Return to Snippet

Revision: 49030
at July 14, 2011 06:49 by pavlovt


Initial Code
$('#theLink').click(function(evt) {
  // do something
  // stop the event from continuing
  evt.preventDefault();
  evt.stopPropagation(); 
});

Initial URL


Initial Description


Initial Title
stop the event from continuing

Initial Tags
js

Initial Language
jQuery