Skip to content

Instantly share code, notes, and snippets.

@wallacemaxters
Created October 15, 2015 12:33
Show Gist options
  • Save wallacemaxters/18c621af15cd7d5500c3 to your computer and use it in GitHub Desktop.
Save wallacemaxters/18c621af15cd7d5500c3 to your computer and use it in GitHub Desktop.
(function ( $ ) {
$.fn.clickOut = function (callback) {
var that = this;
$(document).click(function (e) {
if ( $(e.target).closest(that).size() > 0) {
return;
}
$.isFunction(callback) && $.proxy(callback, that)(e);
});
}
})( jQuery )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment