Skip to content

Instantly share code, notes, and snippets.

@reficedev
Created November 19, 2015 15:15
Show Gist options
  • Save reficedev/a41c43db15310c508675 to your computer and use it in GitHub Desktop.
Save reficedev/a41c43db15310c508675 to your computer and use it in GitHub Desktop.
var div_cliquable = $('#ma_div');
$(document.body).click(function(e) {
// Si ce n'est pas #ma_div ni un de ses enfants
if( !$(e.target).is(div_cliquable) && !$.contains(div_cliquable[0],e.target) ) {
div_cliquable.fadeOut(); // masque #ma_div en fondu
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment