Created
August 1, 2012 13:20
-
-
Save havvg/3226804 to your computer and use it in GitHub Desktop.
jQuery AJAX form submit with Twitter Bootstrap modal
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
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(), | |
success: function(data, status) { | |
$target.html(data); | |
} | |
}); | |
event.preventDefault(); | |
}); | |
}); |
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
<!-- Bootstrap trigger to open modal --> | |
<a data-toggle="modal" href="#rating-modal">Write a Review</a> | |
<div class="hide fade modal" id="rating-modal"> | |
<div class="modal-header"> | |
<button type="button" class="close" data-dismiss="modal">×</button> | |
<h2>Your Review</h2> | |
</div> | |
<div class="modal-body"> | |
<!-- The async form to send and replace the modals content with its response --> | |
<form class="form-horizontal well" data-async data-target="#rating-modal" action="/some-endpoint" method="POST"> | |
<fieldset> | |
<!-- form content --> | |
</fieldset> | |
</form> | |
</div> | |
<div class="modal-footer"> | |
<a href="#" class="btn" data-dismiss="modal">Cancel</a> | |
</div> | |
</div> |
Hi, how to add loading indicator while saving?
@frozenade Put a div with id name of your choice and first line of the function add. In my example below I named the div id="processing"
$('#processing').html("<b>Saving...</b>");
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@BurnedToast I try your code, but there is an issue here
if I change it to
Works!