When I ajaxSubmit a form, the service returns a number. For some reason, ajaxSubmit seems to add a bunch of tags to it.

        form.ajaxSubmit(function(data){
          alert(data);
    });
});

Here, the alert prints out: "<head></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">130</pre></body>"

Whereas if I check in my debugger, the value is simply 130.

enter image description here enter image description here

I have made the assumption that since the service seems to return a correct value, this issue is caused only on the clientside. Please correct me if I'm wrong.

Why is the value different in the javascript from that in the response?

link|improve this question

73% accept rate
what is the form submitting? some WYSIWYG textarea? – Manuel van Rijn Oct 13 '11 at 14:47
A fileinput and a hidden id-field. (And as far as I know, the fileinput works kind of quirky with ajaxsubmit so it transforms it into a textarea. jquery.malsup.com/form/#file-upload) ) – Soroush Hakami Oct 13 '11 at 14:49
That window is HTML, so technically the mark is still there – Joe Tuskan Oct 13 '11 at 14:49
@IAbstractDownvoteFactory: Could you elaborate a little? Why is the 'window' HTML, if I'm only returning a long? – Soroush Hakami Oct 13 '11 at 14:51
For example, if you right click on the 130 and inspect that element; you should see your mark up. It's a little Inception-like, but open the dev tools in the dev tools. – Joe Tuskan Oct 13 '11 at 14:58
show 1 more comment
feedback

2 Answers

I'm guessing you're using this jQuery Form Plugin. Its API states:

Note: You can pass any of the standard $.ajax options to ajaxForm

Have you tried passing it the dataType option? Like this:

form.ajaxSubmit({
    dataType: 'text',
    success: function(data){ alert(data); }
});
link|improve this answer
I tried to pass the dataType parameter, but with the same result unfortunatly. – Soroush Hakami Oct 13 '11 at 14:59
feedback
up vote 1 down vote accepted

The problem was that jquery.form doesn't expect to receive plaintext, it expects either JSON, XML, HTML or Script.

So I solved this by sending JSON-data from the serverside, and specifying that JSON was the expected format at the clientside.

form.ajaxSubmit(
        {dataType: 'json',
            success: function(data) {
                alert(data) });
link|improve this answer
Thanks @Soroush, this saved me a bunch of time! I lost another 20 minutes though when I forgot to put double-quotes around my json variable names in my response. If anyone else makes this same mistake just know that the form plug-in won't call your success or your fail method. You can use the ajaxError event to trap this (I should have!). – sisdog Dec 29 '11 at 6:19
feedback

Your Answer

 
or
required, but never shown

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