Created
August 26, 2014 03:39
-
-
Save RimonEkjon/26b27d49c8b2142db0bf to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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