:eq selector code example
Example: :eq selector
// Select the element at index n within the matched set
$( "td:eq( 2 )" ).css( "color", "red" ); // gets 3rd row (0-indexed)
// Select the element at index n within the matched set
$( "td:eq( 2 )" ).css( "color", "red" ); // gets 3rd row (0-indexed)