
Untitled
By: a guest on
Aug 12th, 2012 | syntax:
None | size: 0.55 KB | hits: 10 | expires: Never
Twitter Bootstrap Modal - On hidden any
$('button.close').click(function(){
var divcible=$(this).parent().parent().find(".modal-body");
var html = divcible.html()
divcible.html("")
divcible.html(html)
})
$('#myModal').on('hidden', function () {
// do something…
})
$('.myModal').on('hidden', function () {
// do something…
// edit for clarity: "that" will now reference the modal that was hidden
var that = this;
})
$(document).on('hidden', function () {
// a modal closes, so do what you want :)
})