all. I am using a jquery version 1.6.2. I do a ajax call like this:

  var jqxhr = $j.post(myPHP, function() {
          alert("success");
        })
        .success(function() { alert("second success"); })
        .error(function(data) { alert(JSON.stringify(data)); })
        .complete(function() { alert("complete"); });

The script, run, and show error, than, complete. Some people may thing that...myPHP have some problem, but the myPHP is always show:

{"sayHi":"hihi"}

So, I go to firebugs to check whether the link have any problem, when I called..: It show me the POST url with status 200, which is ok. Also, I can see the respond via firebugs.... But the question is ....why the jquery so me have a error...: And here is the error msg:

{"readyState":0,"responseText":"","status":0,"statusText":"error"}
link|improve this question

61% accept rate
1  
Solved, I know wt happen: cross-domain ajax calls.... Related: stackoverflow.com/questions/3586780/… – Tattat Jul 25 '11 at 16:15
1  
It is about cross-site scripting: stackoverflow.com/questions/3586780/… – Tattat Jul 28 '11 at 9:33
feedback

1 Answer

You forgot to tell jQuery that the server is returning JSON:

   var jqxhr = $j.post(myPHP, function() {
           alert("success");
         }, "json") // here
        .success(function() { alert("second success"); })
        .error(function(data) { alert(JSON.stringify(data)); })
        .complete(function() { alert("complete"); });
link|improve this answer
still error, btw, if the return is plain text, do I need to mention? – Tattat Jul 25 '11 at 16:08
Are you doing json_encode() on the server? No, you don't need to mention "text". – karim79 Jul 25 '11 at 16:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.