Skip to content

Instantly share code, notes, and snippets.

@RimonEkjon
Created August 26, 2014 03:39
Show Gist options
  • Save RimonEkjon/26b27d49c8b2142db0bf to your computer and use it in GitHub Desktop.
Save RimonEkjon/26b27d49c8b2142db0bf to your computer and use it in GitHub Desktop.
var $form = $('#your-form');
$form.on('submit', function(evt){
evt.preventDefault();
$.ajax({
url: $form.attr('action'),
type: $form.attr('method'),
data: $form.serialize(),
success: function(data){
// do shit with your data
}
});
});
// OR an easier way
$form.submit(function(data){
// do shit with your data
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment