Skip to content

Instantly share code, notes, and snippets.

@slav123
Created April 24, 2013 23:16
Show Gist options
  • Save slav123/5456390 to your computer and use it in GitHub Desktop.
Save slav123/5456390 to your computer and use it in GitHub Desktop.
destroy twitter modal after hide - ajax
// destroy image modal
$('.modal').on('hidden', function () {
$(this).data('modal', null);
});
//latest bootstrap
$(document).ready(function() {
$('#myModal').on('hidden.bs.modal', function (e) {
$(this).removeData('bs.modal');
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment