mirror of
https://github.com/DataTables/DataTables.git
synced 2024-11-29 11:24:10 +01:00
20 lines
459 B
XML
20 lines
459 B
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<dt-example table-type="html">
|
|
|
|
<css lib="datatables" />
|
|
<js lib="jquery" />
|
|
<js lib="datatables" />
|
|
|
|
<title>Zero configuration</title>
|
|
<js><![CDATA[
|
|
$(document).ready(function() {
|
|
$('#example').dataTable();
|
|
} );
|
|
]]></js>
|
|
|
|
<info>
|
|
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).
|
|
</info>
|
|
|
|
</dt-example>
|