Odd jQuery selector used in a find method
Posted
by Danno
on Stack Overflow
See other posts from Stack Overflow
or by Danno
Published on 2010-03-30T13:32:51Z
Indexed on
2010/03/30
13:33 UTC
Read the original article
Hit count: 360
jQuery
|jquery-selectors
Does anyone have any idea what this jQuery selector will do?
object.find('td:eq(1) div div');
I know that the td:eq(1) will get the 2nd td element in the object, but what will the 2 div's referenced at the end of the selector do?
© Stack Overflow or respective owner