Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save 0632347878/b1f8dc5ed3c3f9049f23db313e6b2db8 to your computer and use it in GitHub Desktop.
Save 0632347878/b1f8dc5ed3c3f9049f23db313e6b2db8 to your computer and use it in GitHub Desktop.
Click inside/outside
$(document).click(function() {
alert('clicked outside');
});
$("#cabinet_messages").click(function(event) {
alert('clicked inside');
event.stopPropagation();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment