Skip to content

Instantly share code, notes, and snippets.

@kisuka
Created July 15, 2014 21:15
Show Gist options
  • Save kisuka/6072db03fc9a1c90b143 to your computer and use it in GitHub Desktop.
Save kisuka/6072db03fc9a1c90b143 to your computer and use it in GitHub Desktop.
Clear remote modal view on Bootstrap 3.1.
// Fix for BS 3.1 modal remote loading.
$(document).on("hidden.bs.modal", function (e) {
$(e.target).removeData("bs.modal").find(".modal-content").empty();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment