Submit form using AJAX and jQuery Submit form using AJAX and jQuery ajax ajax

Submit form using AJAX and jQuery


First give your form an id attribute, then use code like this:

$(document).ready( function() {  var form = $('#my_awesome_form');  form.find('select:first').change( function() {    $.ajax( {      type: "POST",      url: form.attr( 'action' ),      data: form.serialize(),      success: function( response ) {        console.log( response );      }    } );  } );} );

So this code uses .serialize() to pull out the relevant data from the form. It also assumes the select you care about is the first one in the form.

For future reference, the jQuery docs are very, very good.


There is a nice form plugin that allows you to send an HTML form asynchroniously.

$(document).ready(function() {     $('#myForm1').ajaxForm(); });

or

$("select").change(function(){    $('#myForm1').ajaxSubmit();});

to submit the form immediately


This is what ended up working.

$("select").change(function(){    $.get("/page.html?" + $(this).parent("form").find(":input").serialize()); });