Skip to content

Instantly share code, notes, and snippets.

@hfknight
Created October 29, 2013 14:50
Show Gist options
  • Save hfknight/7216085 to your computer and use it in GitHub Desktop.
Save hfknight/7216085 to your computer and use it in GitHub Desktop.
JS: Close Element by clicking anywhere on page
$('#element-need-show').click(function(e){
e.stopPropagation();
});
$("#link-for-popup").click(function(e) {
e.preventDefault();
e.stopPropagation();
$('#element-need-show').show();
});
$(document).click(function() {
$('#element-need-show').hide();
});​
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment