How come the equation in the title is false? How do check if two jQuery selectors point to the same DOM object?
|
You are comparing two distinct jQuery objects because you call You can extract a DOM object from each jQuery object by either using
If you want to test against a jQuery selector, use
|
|||||||||||
|
|
Because jQuery creates a new wrapper object for each On the other hand, |
|||||||||
|
|
Use $.is() |
|||
|
|