Anyone know how to disable a link in jquery WITHOUT using return false;?
return false;
Specifically, what I\'m trying to do is disable the link of an item, performing
You can remove click for link by following;
$('#link-id').unbind('click');
You can re-enable link by followings,
$('#link-id').bind('click');
You can not use 'disabled' property for links.