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?
To check if
e.targethas this class you can use thehasClassfunction.Or, if you really want to compare objects, note that jQuery selectors return a collection of items, so I think you’ll want