I'm trying to add a click bind to the icon-next
class if the td
element doesn't have the ui-disabled
class without using if statements if possible (no pun).
$(".icon-next:not(.ui-disabled)").bind('click',function(){});
I'm trying to add a click bind to the icon-next
class if the td
element doesn't have the ui-disabled
class without using if statements if possible (no pun).
$(".icon-next:not(.ui-disabled)").bind('click',function(){});