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 just hide and show the link as you like
$(link).hide(); $(link).show();