I have a registration form and am using jQuery Ajax to submit it.

Here is the jQuery Ajax code:

$(document).ready(function() {
    $("form#regist").submit(function() {
        var str = $("#regist").serialize();
        $.ajax({
            type: 'POST',
            url: 'submit1.php',
            data: $("#regist").serialize(),
            dataType: 'json',
            success: function() {
                $("#loading").append("<h2>you are here</h2>");
            }        
        });
        return false;        
    });
});

I have validation at submit1.php for email and username. When I submit the form with valid data it enters the database and if I enter some repeated data or invalid email it does not enter the database. So my submit1.php works fine.

My main problem is that the success function event at Ajax does not work.

**

Removing dataType:json did work and my success function event was called. However now i got another issue. In my submit1.php file i check for repeated email address , and username in db. If the email or username is repeated then an error needs to be generated to the user without page refresh. I have put a die() in my server script. how do i return this response at success event in ajax?? thanks..

**

link|improve this question

2  
Are you sure the success callback is invoked? – rahul Dec 28 '09 at 13:32
feedback

6 Answers

up vote 29 down vote accepted

The result is probably not in JSON format, so when jQuery tries to parse it as such, it fails. You can catch the error with error: callback function.

You don't seem to need JSON in that function anyways, so you can also take out the dataType: 'json' row.

link|improve this answer
+1 seems like a probable cause of the error – David Hedlund Dec 28 '09 at 13:43
yes..!! thanks a lot tatu Ulmanen... removing dataType : 'json' did work out and now i get the desired result..I really appreciate your reply to my query..Thanks all..thanks – noobcode Dec 28 '09 at 13:53
1  
@idrish, it would be polite to mark the correct answer as accepted so others won't accidentally answer anymore. – Tatu Ulmanen Dec 28 '09 at 14:15
1  
worked for me too! – Marci-man Aug 31 '11 at 22:31
i changed the dataType to text and got it working. like this dataType:'text' – Magesh Jan 3 at 12:00
show 1 more comment
feedback

Put an alert() in your success callback to make sure it's being called at all.

If it's not, that's simply because the request wasn't successful at all, even though you manage to hit the server. Reasonable causes could be that a timeout expires, or something in your php code throws an exception.

Install the firebug addon for firefox, if you haven't already, and inspect the AJAX callback. You'll be able to see the response, and whether or not it receives a successful (200 OK) response. You can also put another alert() in the complete callback, which should definitely be invoked.

link|improve this answer
Thanks for your reply. Tried alert in success event but it did not work. I have firebug addon for firefox and it does receive a successful ( 200 OK ) response so no issues there.. I have a die function called in my php file for any errors and when i check it in firebug , it shows proper response. what do you mean by "You can also put another alert() in the complete callback, which should definitely be invoked."?? Thanks a lot for a quick reply – noobcode Dec 28 '09 at 13:47
if you don't see the alert in your success, then it is not a success. since the response is 200 OK, Tatu's reply seems reasonable, but for further troubleshooting, you can use another event, called complete which is always invoked, regardless of whether or not a request is successful (success only happens if the request is successful). complete: function (xhr, status) { alert('complete: '+status); } – David Hedlund Dec 28 '09 at 13:55
feedback

I tried removing the dataType row and it didn't work for me. I got around the issue by using "complete" instead of "success" as the callback. The success callback still fails in IE, but since my script runs and completes anyway that's all I care about.

$.ajax({
    type: 'POST',
    url: 'somescript.php',
    data: someData,
    complete: function(jqXHR) {
       if(jqXHR.readyState === 4) {
          ... run some code ... 
       }   
    }        
 });

in jQuery 1.5 you can also do it like this.

var ajax = $.ajax({
    type: 'POST',
    url: 'somescript.php',
    data: 'someData'
});
ajax.complete(function(jqXHR){
    if(jqXHR.readyState === 4) {
        ... run some code ... 
    }
});
link|improve this answer
feedback

Although the problem is already solved i add this in the hope it will help others.

I made the mistake an tried to use a function directly like this (success: OnSuccess(productID)). But you have to pass an anonymous function first:

  function callWebService(cartObject) {

    $.ajax({
      type: "POST",
      url: "http://localhost/AspNetWebService.asmx/YourMethodName",
      data: cartObject,
      contentType: "application/x-www-form-urlencoded",
      dataType: "html",
      success: function () {
        OnSuccess(cartObject.productID)
      },
      error: function () {
        OnError(cartObject.productID)
      },
      complete: function () {
        // Handle the complete event
        alert("ajax completed " + cartObject.productID);
      }
    });  // end Ajax        
    return false;
  }

If you do not use an anonymous function as a wrapper OnSuccess is called even if the webservice returns an exception.

link|improve this answer
Thanks @js newbee. – noobcode Sep 20 '10 at 8:40
this has nothing to do with ajax, nor jquery, nor handlers. We could just as well have a comment reminding that "the whole code shoud be wrapped in a script tag". The explanation is false: you do not have to wrap anything in anonymous functions, a named function will do, as long as you pass it instead of calling it. Furthermore it is misleading: OnSuccess gets called before the request is even sent, so it makes no sense to relate it to webservice returning anything. – fdreger Mar 4 '11 at 14:57
feedback

Make sure you're not printing (echo or print) any text/data prior to generate your JSON formated data in your PHP file. That could explain that you get a -sucessfull 200 OK- but your sucess event still fails in your javascript. You can verify what your script is receiving by checking the section "Network - Answer" in firebug for the POST submit1.php.

link|improve this answer
feedback

The success callback takes two arguments:

success: function (data, textStatus) { }

Also make sure that the submit1.php sets the proper content-type header: application/json

link|improve this answer
Thanks for your reply. I read about this on jquery ajax documentaion but i cannot figure out what my next step to should be to get it working... would appreciate if you could point me to the right direction. Also does it mean that i should have some specific code in my php file?? thanks a lot – noobcode Dec 28 '09 at 13:40
3  
the fact that success takes two arguments seems completely irrelevant to the question. You can pass any amount of parameters to a javascript function, regardless of how many it accepts in its declaration, so that's definitely not the cause of these issues, and since none of the values data or textStatus are being used in the success callback, there seems to be no good reason to declare them in the function at all. – David Hedlund Dec 28 '09 at 13:42
And JSON data doesn't have to have correct content-type header, it just has to be in JSON format. – Tatu Ulmanen Dec 28 '09 at 13:44
feedback

Your Answer

 
or
required, but never shown

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