TypeError: $.fn.dataTable.moment is not a function"
TypeError: $.fn.dataTable.moment is not a function"

Link to test case:
https://jsfiddle.net/hy2cokeL/2/
Error messages shown:
TypeError: $.fn.dataTable.moment is not a function"
Description of problem:
It seem correct importation, why have this problem ? i try to datetime too but sort doesn't work
This question has an accepted answers - jump to answer
Answers
sorry , correct test case :
https://jsfiddle.net/cq7mpux4/8/
Use the commented out statement
DataTable.datetime()
instead. See this thread for an explanation.The format specification supplied is incorrect. See the Moment docs for formatting options. You have
HH:ii:ss
for the time but there is notii
token for moment.js. UseHH:mm:ss
instead.Updated test case:
https://jsfiddle.net/zcj185nh/
Kevin
Now work fine, thank's :
https://jsfiddle.net/z63myg98/