fnSetFilteringDelay is not a function
fnSetFilteringDelay is not a function

var table = $('#PRData').DataTable({..... }).fnSetFilteringDelay();
"fnSetFilteringDelay is not a function " ? .Please help
This discussion has been closed.
var table = $('#PRData').DataTable({..... }).fnSetFilteringDelay();
"fnSetFilteringDelay is not a function " ? .Please help
Answers
Top FAQ. That is a legacy plug-in, so you would use
$().dataTable()
to access it.Also, consider using the built in
searchDelay
option in DataTables 1.10+ rather than the old plug-in.Allan