What is the difference between $('#div1 a')[0] and $('#div1 a').eq(0) for the following markup
<div id="div1">
<a href="#">click</a>
</div>.
Please Help.
$('div1 a')[0]
returns a direct reference to a DOM element
$('div1 a').eq(0)
returns a JQuery object
http://jsfiddle.net/meo/DP8as/
This will not work:
$('div a')[0].hide()
this will;
$('div a').eq(0).hide()
                        If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With