Skip to content

Instantly share code, notes, and snippets.

@timwright12
Created September 30, 2015 13:17
Show Gist options
  • Save timwright12/934e899f47ab2366a6a9 to your computer and use it in GitHub Desktop.
Save timwright12/934e899f47ab2366a6a9 to your computer and use it in GitHub Desktop.
var $doc = $(document);
var $yourElement = $('#nav a');
$doc.on('mouseup', function(e) {
if ( ! $yourElement.is(e.target) && $yourElement.has(e.target).length === 0 ) {
// your code here
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment