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 :
To access all the rows, you can do:
var rows = $("#myTable").dataTable().fnGetNodes();
In your case, this should work:
$('.testLink').click(function(){ var cells = []; var rows = $("#myTable").dataTable().fnGetNodes(); for(var i=0;i