Skip to content

Instantly share code, notes, and snippets.

@DragorWW
Created January 21, 2014 09:24
Show Gist options
  • Save DragorWW/8536946 to your computer and use it in GitHub Desktop.
Save DragorWW/8536946 to your computer and use it in GitHub Desktop.
jquery event return false
$('.elm').click(function(e) {
e.preventDefault();
e.stopPropagation(); // stop other event for this elm
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment