I am having trouble getting any response text from my jQuery AJAX post:
$('document').ready(function()
{
$('#saveRouteTrace').click(function(){
// Build latStr and lonStr
if(saveChanges()) {
$.post('changeRouteTrace.php', {
id: traceRouteId
},
function(data) {
if(data.success) {
alert(data.reason);
}
else {
alert("Error: " + data.reason);
}
}, 'json');
}
});
});
I am returning a response like:
{ "success": true, "reason": "because it worked" }
from the server, but the function(data) code never executes. What am I doing wrong?
saveChanges()returntrue? How do you create the response? What can you see in the network tab of your favorite debugging tool? You need to add a lot more information. – Felix Kling Feb 21 '11 at 22:33{ "success": true, "reason": "because it worked" }or you think/would like to be returning this JSON (there is a difference between the two)? FireBug knows the answer. Ask him. – Darin Dimitrov Feb 21 '11 at 22:37