Skip to content

Instantly share code, notes, and snippets.

@batandwa
Created July 18, 2012 16:39
Show Gist options
  • Save batandwa/3137351 to your computer and use it in GitHub Desktop.
Save batandwa/3137351 to your computer and use it in GitHub Desktop.
jQuery - Send a form using Ajax
jQuery.post(
$(this).attr('action'),
$(this).serialize(),
function( output ) {
alert('Success...');
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment