Skip to content

Instantly share code, notes, and snippets.

View paulohcrippa's full-sized avatar

Paulo H Crippa paulohcrippa

View GitHub Profile
@paulohcrippa
paulohcrippa / ajax-form.js
Created September 6, 2016 05:05 — forked from havvg/ajax-form.js
jQuery AJAX form submit with Twitter Bootstrap modal
jQuery(function($) {
$('form[data-async]').live('submit', function(event) {
var $form = $(this);
var $target = $($form.attr('data-target'));
$.ajax({
type: $form.attr('method'),
url: $form.attr('action'),
data: $form.serialize(),