Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

jQuery click() event catch-all?

we're showing a box on the screen that I want to hide when the user clicks anywhere on the screen, including body, anchors, divs, buttons, etc... Is there a selector that can handle this for me? Or is it a case of $('body, a, div, input').click()?

like image 380
DaveDev Avatar asked Sep 21 '10 15:09

DaveDev


2 Answers

You can do it like this:

$(document).click(function() {
  $("#boxID").hide();
});

Since the click events will, by default, bubble up to document, this is a "catch all" approach...if you don't want clicks from inside the box to close it, add a .stopPropagation() call on those click events like this:

$("#boxID").click(function(e) {
  e.stopPropagation();
});
like image 55
Nick Craver Avatar answered Oct 25 '22 02:10

Nick Craver


You can just bind to the click event of document element. Try it at http://jsfiddle.net/ZqEbY/.

like image 27
Nithesh Chandra Avatar answered Oct 25 '22 03:10

Nithesh Chandra