I am using the datatables jquery plugin and want to sorty by dates.
I know they got a plugin but I can\'t find where to actually download it from
http://data
Follow the link https://datatables.net/blog/2014-12-18
A very easy way to integrate ordering by date.
Put this code in before initializing the datatable:
$(document).ready(function () {
// ......
$.fn.dataTable.moment('DD-MMM-YY HH:mm:ss');
$.fn.dataTable.moment('DD.MM.YYYY HH:mm:ss');
// And any format you need
}