Monie Posted April 13, 2008 Share Posted April 13, 2008 Like I have a form and I want to submit the data via AJAX, but how to do with jQuery? Quote Link to comment Share on other sites More sharing options...
rhodesa Posted April 14, 2008 Share Posted April 14, 2008 var data = $("form_id").serialize(); //Serialize form jQuery.post('filename.php', data, function (data, textStatus) { alert(data); }); Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.