Ajax error callback
Ajax error callback
sday
Posts: 2Questions: 1Answers: 0
What is expected in the parameters for the ajax error callback?
error: function (xhr, error, thrown) {
error( xhr, error, thrown );
}
From the last example in the docs: https://editor.datatables.net/reference/option/ajax
Thanks
-Steve
Edited by Allan - Syntax highlighting. Details on how to highlight code using markdown can be found in this guide.
This discussion has been closed.
Answers
Hi Steve,
It matches the
jQuery.ajax()
error handler.Regards,
Allan
Thanks, that is what I was looking for.