var a=$('#start > div:last-child');
var b=$('#start > div.live')[0];
alert(a==b)
alert(a==$(b))
It's always false. How can you compare two elements in jQuery?
thanks
It's always false. How can you compare two elements in jQuery? thanks |
||||
|
|
|
You could compare DOM elements. Remember that jQuery selectors return arrays which will never be equal in the sense of reference equality. Assuming:
this:
returns true. |
|||||||||||||
|
|
For the record, jQuery has an
Note that |
|||||||||||
|
|
Every time you call the jQuery() function, a new object is created and returned. So even equality checks on the same selectors will fail.
The resulting jQuery object contains an array of matching elements, which are basically native DOM objects like
|
|||
|
|
|
Random AirCoded example of testing "set equality" in jQuery:
|
|||
|
|
|
The collection results you get back from a jQuery collection do not support set-based comparison. You can use compare the individual members one by one though, there are no utilities for this that I know of in jQuery. |
|||
|
|