Created
May 9, 2014 04:00
-
-
Save wgm89/a35003b585a84966a4b7 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
| $(document).click(function(e){ | |
| // Check if click was triggered on or within #menu_content | |
| if( $(e.target).closest("#menu_content").length > 0 ) { | |
| return false; | |
| } | |
| // Otherwise | |
| // trigger your click function | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment