Answers for "modal without close button"

0

do not close dialog box when click outside bootstrap modal

<div id="idModal" class="modal hide" data-backdrop="static" data-keyboard="false">
Posted by: Guest on July-23-2020
1

bs modal service close

this._bsModalRef.hide();
Posted by: Guest on August-14-2020
1

bootstrap modal not close

  		$('#MymodalPreventScript').modal({
    		backdrop: 'static',
    		keyboard: false
		});
Posted by: Guest on March-10-2020
0

when modal close event

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

Code answers related to "Javascript"

Browse Popular Code Answers by Language