examples.datatables.ajax.js 266 B

1234567891011121314151617181920
  1. (function( $ ) {
  2. 'use strict';
  3. var datatableInit = function() {
  4. var $table = $('#datatable-ajax');
  5. $table.dataTable({
  6. bProcessing: true,
  7. sAjaxSource: $table.data('url')
  8. });
  9. };
  10. $(function() {
  11. datatableInit();
  12. });
  13. }).apply( this, [ jQuery ]);