I am using jquery plugin DataTables for building nice table
var table = $(\'#example\').DataTable({ \"data\": source });
Datatables have an iterator for each row rows().every() with this referring to the context of the current row being iterated.
this
tableName.rows().every(function(){ console.log(this.data()); });