How to check if two elements (held in jQuery collections) are the same?
I would suspect this to work at first:
if ($('#element') == $('#element')) alert('hello');
But it does not. How does one test if elements are the same?