bootstrap modal show event
$('#code').on('shown.bs.modal', function (e) {
// do something...
})
bootstrap modal show event
$('#code').on('shown.bs.modal', function (e) {
// do something...
})
how to check if bootstrap modal is open
$('#myModal').is(':visible');
how to check if bootstrap modal is open
$('#myModal').is(':visible');
$('#myModal').data('bs.modal').isShown ;
$('#myModal').hasClass('in');
how to check if bootstrap modal is open
($("element").data('bs.modal') || {})._isShown // Bootstrap 4
($("element").data('bs.modal') || {}).isShown // Bootstrap <= 3
// or, with the optional chaining operator (?.)
$("element").data('bs.modal')?._isShown // Bootstrap 4
$("element").data('bs.modal')?.isShown // Bootstrap <= 3
how to check if bootstrap modal is open
$('#myModal').hasClass('in');
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us