how to send the contents of a callback to another table?
how to send the contents of a callback to another table?
asassa
Posts: 4Questions: 3Answers: 0
I have two tables , how to send the contents of a callback from the first table to the second . ?
$(document).ready(function() {
$('#example').dataTable( {
"initComplete": function () {
var api = this.api();
api.$('td').click( function () {
api.search( this.innerHTML ).draw();
} );
}
} );
} );
This discussion has been closed.