I\'m new to jQuery, and I\'m wondering what the difference is between jQuery\'s get() and eq() functions. I may misunderstand what the get()
get()
eq()
jQuery eq() method selects a HTML element with a specific index number.
Here is an example of that
$( "body" ).find( "div" ).eq( 2 ).addClass( "red" ); // it finds the second div in the html body and change it to red color.
Source: http://www.snoopcode.com/JQuery/jquery-eq-selector