Ajax POST In Ajax Succes Not Doing Anything
I've got a button on which the user can click which then will fire an ajax call and when it is succes I want to fire another ajax call. I've tried it like this: $.ajax({
Solution 1:
You should call the callback as "success" and not "succes" (according to the code you attached it's just a misprint)
Solution 2:
There are two wrong words
You should call the callback as "data" and not "data2" and "success" and not "succes" (according to the code you attached it's wrong words in your script
Post a Comment for "Ajax POST In Ajax Succes Not Doing Anything"