up vote 3 down vote favorite
share [g+] share [fb]

How do I check for a click on everything but a certain object?
I use (not), but I'm not sure how to call the class / id of the entire page.

$(".page").not("#divInfoBox").click(function (event) {

}

What's the correct way in the HTML code to specify page, as I have something like:

<html>
<body>
    <div class="page">  
    </div>
</body>
</html>

What I see is this: Clicking on the top half of the page works; but the bottom of the page, where there is nothing but background color, the click does not register because it is "off the page" -- how do I extend this so the click works everywhere?

Thanks, Michael

link|improve this question

Try to limit your questions to a single question. – Joe Davis Jul 10 '09 at 14:31
feedback

3 Answers

up vote 1 down vote accepted

You can add a click event to the "html" element. That way you get events even if you're "off" the page:

$("html").click( function() { ...  } );

Demo can be seen here: http://jsbin.com/eguti

link|improve this answer
feedback

Try this:

$("body:not('#divInfoBox')").click(function (event) {

});

Read the doc page for the not selector:

http://docs.jquery.com/Selectors/not

link|improve this answer
The problem with this one is; the "bottom of the page" is already outside of the body tag (which I did not know you could attach clicks to) So the answer that worked for me is the one written by activa. Thanks though! – Michael Jul 10 '09 at 14:41
@Michael - Oh well, I guess 'body' can be changed to 'html' in my answer, so I'll leave it here for the sake of the not selector. – karim79 Jul 10 '09 at 15:03
feedback

Your missing the ); at the end, should be like this:

$(".page").not("#divInfoBox").click(function (event) {
    // do something
});

As for your question, the 'page' div is not extending to the bottom of the page so you need to register the function to work on the body tag.

Also it looks like you are making a popup appear when certain things are clicked and disappear when clicked off to the side. I would recommend looking for a plugin that will handle this for you. I know there are several. Personally I like jqModal.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.