ASKER
<script>
$(document).ready(function() {
$('#results').DataTable( {
"lengthMenu": [[10, 25, 50, -1], [10, 25, 50, "All"]],
"columnDefs": [
{ "type": "date", "targets": [6,7,8] }
],
"ajax": {
"url":"data_source_example.asp",
"type":"POST"
}
} );
} );
</script>
ASKER
ASKER
jQuery (Core) is a cross-browser JavaScript library that provides abstractions for common client-side tasks such as Document Object Model (DOM) traversal, DOM manipulation, event handling, animation and Ajax. jQuery also provides a platform to create plugins that extend jQuery's capabilities beyond those already provided by the library.
TRUSTED BY
ASKER