I am using jquery dataTables to generate the paginated table on my site. I need to run a process that grabs all of the data out of a particular column. Something like :
You'll want to use the "EQ" selector. It starts at the index of "0", so if you have..
0 1 2 3
Then by using
$("td").eq(3); // last one $("td").eq(2); //returns "2"
Make sense?
http://api.jquery.com/eq-selector/