Created
October 15, 2015 12:33
-
-
Save wallacemaxters/18c621af15cd7d5500c3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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