クリックされたli要素に「update」クラスがあるかどうかを確認しようとしています。
$('li.category').live('click', function(event)
{
//my code here
});
私は試した:
if (($(event.target).hasClass('update')))
if ($(this).hasClass('update'))
どちらも常にfalseを返します。
これどうやってするの?
クリックされたli要素に「update」クラスがあるかどうかを確認しようとしています。
$('li.category').live('click', function(event)
{
//my code here
});
私は試した:
if (($(event.target).hasClass('update')))
if ($(this).hasClass('update'))
どちらも常にfalseを返します。
これどうやってするの?