What I want to do:

( clickedObject === someDiv ) //returns true or false

What I tried

( $(e.target) === $('.selector') ); //returns a false negative.

My workaround

( $(e.target).attr('class') === $('.selector').attr('class') ); //works as intended, not so clean though.

What is the right way to compare the object I clicked to an object in the DOM?

link|improve this question

feedback

3 Answers

up vote 8 down vote accepted

To check if e.target has this class you can use the hasClass function.

if ($(e.target).hasClass("selector"))

Or, if you really want to compare objects, note that jQuery selectors return a collection of items, so I think you'll want

if (e.target === $('.selector')[0])
link|improve this answer
I like this answer, because it describes why my approach did not work. jQuery returns a collection of items. – dubbelj Dec 22 '11 at 15:57
@dubbelj - cool - glad it helped :) – Adam Rackis Dec 22 '11 at 15:58
feedback

You're close. Us $.is() instead:

if($(e.target).is('.selector')) {
    // Your code
}

If you're just seeing whether e.target has a certain class, try using $.hasClass() in place of .is():

if($(e.target).hasClass('selector')) {
    // Your code
}

Either method works, although .hasClass() is a little clearer as to what the code does.

link|improve this answer
+1 was just typing the same thing. – 32bitkid Dec 22 '11 at 15:50
2  
+1 - boom - nice answer badge :) – Adam Rackis Dec 22 '11 at 15:56
2  
@32bitkid I do apologise ;-) I've had that happen to me so many times! – JamWaffles Dec 22 '11 at 15:58
@AdamRackis Thanks for your contribution :-) – JamWaffles Dec 22 '11 at 15:59
feedback

If you want to match the element that the event is attached to you can use $(this), or if you want to find which element triggered the event use $(event.target).

Below is an example of both of these.

http://jsfiddle.net/Phunky/TbJef/

Unless you're using event delegation these will be the same though and if there the same element.

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.