Answers for "close button in modal"

4

javascript modal close

$('#closemodal').click(function() {
    $('#modalwindow').modal('hide');
});
Posted by: Guest on March-08-2020
0

when modal close event

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

bootstrap modal prevent close

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

Browse Popular Code Answers by Language