How to get nth jQuery element -
in jquery, $("...").get(3) returns 3rd dom element. function return 3rd jquery element?
why not browse (short) selectors page first?
here is: :eq() operator. used get(), returns jquery object.
or can use .eq() function too.
Comments
Post a Comment