Am I right in thinking that you can't test for equality of jQuery
objects?

alert($("#saveForm") == $("#saveForm")); // false
alert($("#saveForm") === $("#saveForm")); // false
alert($("#saveForm").get(0) == $("#saveForm").get(0)); // true
alert($("#saveForm").get(0) === $("#saveForm").get(0)); // true

Instead I have to drop out of jQuery and test the elements directly.

Am I missing something maybe?

Adrian

Reply via email to