ajax call not showing table upon completing :done function
ajax call not showing table upon completing :done function
![kerchunk](https://secure.gravatar.com/avatar/cf05850d3cc11e187081d7cb4eb4f290/?default=https%3A%2F%2Fvanillicon.com%2Fcf05850d3cc11e187081d7cb4eb4f290_200.png&rating=g&size=120)
jQuery 3.3.1
DataTables 1.10.19
I've put together [https://jsfiddle.net/kerchunk/wrLv1ce2] to demonstrate an issue with my ajax call - upon selecting a row and clicking the "Update" button, a popup form gets populated and displayed with the rows' data - this part works fine - then clicking the popup's Submit button should update the table row with the data from the form. But instead I get a 404 error. Is there something I'm lacking in my :done function?
TIA,
kerchunk
This discussion has been closed.
Answers
The 404 Not Found error is a response from the server indicating the page is not found. Could be that your AJAX URL is incorrect. I would start by looking at the server's logs to determine why its responding with the 404 error.
Kevin