Response Status Is '0' In Jquery Ajax
I'm using a jquery ajax for storing a data in the database. I call a service through a url and send data to it in the following way: $.ajax({ type: 'POST',
Solution 1:
Stringify the data before sending - data: JSON.stringify({ "loginName": "tsample@gmail.com", "mobile": "1234567890" })
amd contentType:"application/json"
Post a Comment for "Response Status Is '0' In Jquery Ajax"