Skip to content

Instantly share code, notes, and snippets.

@d1i1m1o1n
Last active April 19, 2016 12:19
Show Gist options
  • Save d1i1m1o1n/b4900908c42d0ba9b226a507284e85a4 to your computer and use it in GitHub Desktop.
Save d1i1m1o1n/b4900908c42d0ba9b226a507284e85a4 to your computer and use it in GitHub Desktop.
Jquery click outside an element
$(document).mouseup(function(e) {
var container = $(".timerangepicker");
if (!container.is(e.target) && container.has(e.target).length === 0) {
container.css({
display: 'none'
});
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment