DataTables zero configuration example

Preamble

DataTables has most features enabled by default, so all you need to do to use it with one of your own tables is to call the construction function (as shown below).

Live example

Rendering engine Browser Platform(s) Engine version CSS grade
Trident Internet Explorer 4.0 Win 95+ 4 X
Trident Internet Explorer 5.0 Win 95+ 5 C
Rendering engine Browser Platform(s) Engine version CSS grade

Initialisation code

$(document).ready(function() {
	$('#example').dataTable();
} );

Other examples