[jQuery] compare jQuery objects

[jQuery] compare jQuery objects


How is it that I get false for the following?
Shouldn't I get "true" as a result? if not, why?
<div id="home"></div>
$(document).ready(function(){
    var one = $('#home');
    console.log('compararison: ' + (one == $('#home')) );    // false !!!
});
How do I compare jQuery objects?