Skip to content

Instantly share code, notes, and snippets.

@ElmahdiMahmoud
Created November 26, 2012 06:54
Show Gist options
  • Select an option

  • Save ElmahdiMahmoud/4146925 to your computer and use it in GitHub Desktop.

Select an option

Save ElmahdiMahmoud/4146925 to your computer and use it in GitHub Desktop.
jquery: stopPropagation
$("#element").click(function(e){
e.stopPropagation();
});
$(document).click( function(){
$("#elem").slideUp();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment