$(document).ready(function() { // Setup - add a text input to each footer cell $('#offerte tfoot th').each( function () { var title = $(this).text(); $(this).html( ' '); } );
// DataTable var table = $('#offerte').DataTable();
// Apply the search table.columns().every( function () { var that = this;
$( 'input', this.footer() ).on( 'keyup change', function () { if ( that.search() !== this.value ) { that .search( this.value ) .draw(); } } ); } ); } );
$(document).ready(function() { // Setup - add a text input to each footer cell $('#curriculum tfoot th').each( function () { var title = $(this).text(); $(this).html( ' '); } );
// DataTable var table = $('#curriculum').DataTable();
// Apply the search table.columns().every( function () { var that = this;
$( 'input', this.footer() ).on( 'keyup change', function () { if ( that.search() !== this.value ) { that .search( this.value ) .draw(); } } ); } ); } );
Я пытаюсь выполнить цикл API Graph Facebook через цикл foreach, но получаю следующую ошибку: «Ошибка анализа PHP: синтаксическая ошибка, неожиданная T_VARIABLE, ожидается T_CATCH».