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()?
| |||
|
feedback
|
|
You can do it like this:
Since the
| |||
|
feedback
|
|
You can just bind to the click event of document element. Try it at http://jsfiddle.net/ZqEbY/. | |||
|
feedback
|