I would suspect this to work at first:
if ($(\'#element\') == $(\'#element\')) alert(\'hello\');
But it does not. How does one test if ele
As of jquery 1.6 you can now simply do:
$element1.is($element2)