bootstrap modal close js code example

Example 1: data-dismiss= modal in jquery

$(document).ready(function(){
        // Open modal on page load
        $("#myModal").modal('show');
 
        // Close modal on button click
        $(".btn").click(function(){
            $("#myModal").modal('hide');
        });
    });

Example 2: close bootstrap modal with javascript

$('#myModal').modal('hide');

Example 3: bootstrap modal prevent close

$('#myModal').modal({backdrop: 'static', keyboard: false})

Example 4: bootstrap modal not close

$('#MymodalPreventScript').modal({
    		backdrop: 'static',
    		keyboard: false
		});

Example 5: alert modal

npm i bootbox

Tags:

Css Example