Answers for "modal on close event bootstrap"

4

close bootstrap modal with javascript

$('#myModal').modal('hide');
Posted by: Guest on April-16-2020
0

when modal close event

$("yourid").on('hide.bs.modal', function(){
	// do it here
});
Posted by: Guest on January-07-2021
0

bootstrap modal on close

$('#myModal').on('hidden.bs.modal', function () {
    // do something…
});
Posted by: Guest on May-30-2021
1

bootstrap modal prevent close

$('#myModal').modal({backdrop: 'static', keyboard: false})
Posted by: Guest on March-02-2020

Code answers related to "modal on close event bootstrap"

Browse Popular Code Answers by Language