I am using the following code to disable the click event for anchor tags:
//disable Click event for links except navigation
$("a:not(#navigation a)").live('click', function(e) {
e.preventDefault;
return false;
});
I need to reenable or remove the implementation which was set as above on click of an another button.
How to do it in jquery?
以上就是enable click event for anchor which was disabled using jquery的详细内容,更多请关注web前端其它相关文章!