Created
December 13, 2015 13:46
-
-
Save aseredenko/3f1edeaa295cd387e20c to your computer and use it in GitHub Desktop.
This file contains 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
$(document).click( function (event) { | |
if ($(event.target).closest(".page-navigation").length | |
|| $(event.target).closest(".nav-switcher").length) return; | |
// What to do on click | |
event.stopPropagation(); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment