we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
showing results for - "datatables on row created"
Becky
07 Jun 2016
1$('#example').DataTable( {
2  	createdRow: function ( row, data, index ) {
3      	// row = tr node
4      	// data = raw data (array or obj)
5      	// index = The index of the row in DataTables' internal storage.
6    	$(row).addClass('highlight');
7  	}
8} );