submitting a large form through ajax

Submitting a form through ajax

Search for: Submitting a form through ajax


use post
use params to ajax

Or how can I tell jquery ajax post this form?

Search for: Or how can I tell jquery ajax post this form?

Here is some documentation on jquery ajax

how to deal with errors when using ajax?

Search for: how to deal with errors when using ajax?

what are the patterns for dealing with ajax errors?

Search for: what are the patterns for dealing with ajax errors?

Here is jquery post method link

Documentation on form serialize

submitting a form through post using ajax and jquery?

Search for: submitting a form through post using ajax and jquery?


var poststuff = $("#UpdateSubmitFormID").serialize();
$.post("/akc/update",poststuff,replyFromPost)

function replyFromPost(data)
{
    dalert("reply:" + data);
    if (isAjaxSuccess(data) == false)
    {
        alert("Serverside error:" + data);
        return;
    }
    saveLocal(encodedAppendText);
}