select 3rd row out of databasesql code example
Example: jquery select the 3rd row of a table
$('.itemTable').eq(2);
//this will grab the 3rd row of the table with the class itemTable
$('.itemTable').eq(2);
//this will grab the 3rd row of the table with the class itemTable