Does http://live.datatables.net/ work any longer? Seems even the smallest bit of code added to the default files that are loaded, I get the following error:
http://live.datatables.net/runner:515:5
m.event.dispatch@http://code.jquery.com/jquery-1.11.3.min.js:4:8497
m.event.add/r.handle@http://code.jquery.com/jquery-1.11.3.min.js:4:5235"
The only thing I added to the default loaded code is:
$(document).ready( function () {
var table = $('#example').DataTable();
$('#example').on( 'click', 'tr', function () {
alert( 'Clicked row' );
} );
} );
And yet I still get the error. The DT and jQuery source was added. Any thoughts?
Thanks!