Skip to content

Instantly share code, notes, and snippets.

@parsibox
Created July 26, 2019 17:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parsibox/9937ac55ba56b0ab9186a0ca44dd18c7 to your computer and use it in GitHub Desktop.
Save parsibox/9937ac55ba56b0ab9186a0ca44dd18c7 to your computer and use it in GitHub Desktop.
/FOR SHOWING
$(window).on('shown.bs.modal', function() {
$('#code').modal('show');
alert('shown');
});
//FOR HIDDING
$(window).on('hidden.bs.modal', function() {
$('#code').modal('hide');
alert('hidden');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment