Is there any magic jquery method that will allow you to submit a form to its action URL via AJAX rather than with an page reload?
I know you can bind a form's submit event to a handler function, but I'm also looking for something that will automatically serialize the form's request variables into the $.post
's data element in the same as the browser does, and then fire off an ajax post or get. (the specific problem I'm trying to solve is to "ajaxify" an existing form)