Created
April 23, 2021 08:21
-
-
Save MrMooky/89807c9d7d3eabf12f4a1aa2effd7abe to your computer and use it in GitHub Desktop.
jQuery Hide container when clicking outside
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).mouseup(function(e){ | |
var container = $('.topbar .box:visible'); | |
if (!container.is(e.target) && container.has(e.target).length === 0) { | |
container.slideUp(150); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment