Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I do have a css class name ".className" How to create an if statement wherein if the user does not click .className it will alert. for example:

if (click != $('.className')) {
   alert("You did not click className");
}

I know that my code is incorrect. How to do it? Btw, this is similar to an outside click. Thank you.

share|improve this question

1 Answer

up vote 2 down vote accepted
$("a").click(function(e) {
    e.preventDefault();
    if (!$(this).hasClass('className')) {
        alert("You did not click className!");
    }
});

demo: http://jsfiddle.net/yaqLs/


EDIT: If by "outside clicks" you mean not just links then,

$("*").click(function(e) {
    e.stopPropagation();
    if (!$(this).hasClass('className')) {
        alert("You did not click className!");
    }
});

demo: http://jsfiddle.net/yaqLs/1/

share|improve this answer
Thank you! Great. – Eron Jul 7 '11 at 0:58

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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