Published
- 1 min read
jquery close popup when click outside
The solution for this is noted below
jquery close popup when click outside
Solution
$(document).click(function (e) {
if ($(e.target).closest('#popupdivID').length != 0) return false
$('#popupdivID').hide()
})
Try other methods by searching on the site. That is if this doesn’t work