PHP bulk form post using ajax
I have a form with 100 fields ,how do i post the data to a php u开发者_StackOverflowsing ajax with out refreshing the page,also i do not want to concatenate the field values without getelementbyid in the xmlhttprequest.
Thanks
in jQuery could be something like
$.post("/path", $("#form-id").serialize(), function(ev){
alert("done!");
});
精彩评论