Created
May 7, 2014 10:51
-
-
Save logeshpaul/7ff4283744c3d0b05ad4 to your computer and use it in GitHub Desktop.
Revisions
-
logeshpaul created this gist
May 7, 2014 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,13 @@ // 'touchstart' helps trigger the event in touch devices $(document).on('click touchstart', function(e){ if ($(e.target).closest("#menuscontainer").length == 0) { // .closest can help you determine if the element // or one of its ancestors is #menuscontainer console.log("hide"); } }); $('#menuscontainer').on('click', function(e){ e.stopPropagation(); e.preventDefault(); }