I often find myself doing things like this when manipulating tables:-
$($('table tr').children()[2]).html();
For when I want the cell in the 3rd column as a jQuery wrapped set. Selecting the node using [n] and then passing to $() to get a jQuery wrapped set.
Is there a neater more readable way to do this?
Use the
.eq()methodyou could alternatively use the
:eqselector