Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save dejanmarkovic/9900005 to your computer and use it in GitHub Desktop.
Save dejanmarkovic/9900005 to your computer and use it in GitHub Desktop.
Kill the bubbling on the click event (use stopPropagation)
$( "p" ).click(function( event ) {
event.stopPropagation();
// Do something
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment