Answers for "close the modal if the button is click"

4

javascript modal close

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

prevent close modal when click outside

<div class="modal fade" id="myModal" data-keyboard="false" data-backdrop="static">
Posted by: Guest on June-30-2021
4

javascript modal close

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

prevent close modal when click outside

<div class="modal fade" id="myModal" data-keyboard="false" data-backdrop="static">
Posted by: Guest on June-30-2021

Code answers related to "close the modal if the button is click"

Code answers related to "Javascript"

Browse Popular Code Answers by Language