submitting a large form through ajax
satya - Tue May 08 2012 17:12:31 GMT-0400 (Eastern Daylight Time)
Submitting a form through ajax
Submitting a form through ajax
satya - Tue May 08 2012 17:24:44 GMT-0400 (Eastern Daylight Time)
perhaps use post instead of get on ajax
use post
use params to ajax
satya - Tue May 08 2012 17:25:07 GMT-0400 (Eastern Daylight Time)
Or how can I tell jquery ajax post this form?
Or how can I tell jquery ajax post this form?
satya - Tue May 08 2012 17:26:24 GMT-0400 (Eastern Daylight Time)
Here is some documentation on jquery ajax
satya - Tue May 08 2012 17:29:57 GMT-0400 (Eastern Daylight Time)
how to deal with errors when using ajax?
how to deal with errors when using ajax?
satya - Tue May 08 2012 17:30:20 GMT-0400 (Eastern Daylight Time)
what are the patterns for dealing with ajax errors?
what are the patterns for dealing with ajax errors?
Search for: what are the patterns for dealing with ajax errors?
satya - Tue Oct 02 2012 11:16:48 GMT-0400 (Eastern Daylight Time)
Here is jquery post method link
satya - Tue Oct 02 2012 11:21:25 GMT-0400 (Eastern Daylight Time)
Documentation on form serialize
satya - Tue Oct 02 2012 11:25:00 GMT-0400 (Eastern Daylight Time)
submitting a form through post using ajax and jquery?
submitting a form through post using ajax and jquery?
Search for: submitting a form through post using ajax and jquery?
satya - Wed Oct 03 2012 09:28:07 GMT-0400 (Eastern Daylight Time)
Here is how you post a form
var poststuff = $("#UpdateSubmitFormID").serialize();
$.post("/akc/update",poststuff,replyFromPost)
satya - Wed Oct 03 2012 09:28:34 GMT-0400 (Eastern Daylight Time)
Here is how you respond to the post: replyFromPost method
function replyFromPost(data)
{
dalert("reply:" + data);
if (isAjaxSuccess(data) == false)
{
alert("Serverside error:" + data);
return;
}
saveLocal(encodedAppendText);
}