Odd jQuery selector used in a find method
- by Danno
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?