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 :
<
Here's a method using fnGetData()
First get the data from plugin which will be all rows visible or not. Loop over each row data array, and push index=1( second cell) into new array
oTable = $('#example').dataTable();
var secondCellArray=[];
$.each( oTable.fnGetData(), function(i, row){
secondCellArray.push( row[1]);
})
console.log( secondCellArray)
EDit : working demo...look in console after render
http://live.datatables.net/apixiv/edit#javascript,html