I wish to show the records using datatables with default ordering based on one of my rows with date & time in descending order. Please help me in editing the jquery stru
//working here code
$('#table').DataTable({ columnDefs: [ { type: 'date', 'targets': [3] } ], order: [[ 3, 'desc' ]], });