/ Published in: jQuery
Expand |
Embed | Plain Text
$('#theLink').click(function(evt) { // do something // stop the event from continuing evt.preventDefault(); evt.stopPropagation(); });
You need to login to post a comment.
$('#theLink').click(function(evt) { // do something // stop the event from continuing evt.preventDefault(); evt.stopPropagation(); });
You need to login to post a comment.