Answers for "bootstrap modal not showing"

2

bootstrap show modal on page load

<script type="text/javascript">
    $(window).on('load',function(){
        $('#myModal').modal('show');
    });
</script>
Posted by: Guest on September-28-2020
1

bootstrap modal not close

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

.show() and .hide not working for bootstrap modal

<button class="button primary" id="buy" style="text-decoration:none;" type="button">Review and confirm</button>

<div class="modal-bootstrap fade bs-example-modal-sm" id="myModal" tabindex="-1" role="dialog" aria-labelledby="smallModalLabel" aria-hidden="true">
    <!-- modal contents -->
</div>

<script type="text/javascript">
$("#buy").click(function () {
    var a = 4;
    if (a == 5) {
        alert("if");
        $('#myModal').modal('show');
    } else {
        alert("else");
        $('#myModal').modal('hide');
    }
});
</script>
Posted by: Guest on June-24-2020
0

input doesnt work on open modal bootstrap

Remove in div.modal:
tabindex="-1"
Posted by: Guest on December-21-2020

Code answers related to "bootstrap modal not showing"

Code answers related to "Javascript"

Browse Popular Code Answers by Language