With jQuery, I think you just have to do something like the following (but check the docs first http://api.jquery.com/jQuery.post/ ):
var form_vars = jQuery('#myform').serialize();
jQuery.post(url, form_vars, function() {
alert('POST was successful');
});

