modal close in jquery code example

Example 1: close modal jquery

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

Example 2: on modal close jquery

$('#myModal').on('hidden.bs.modal', function () {
  // do something…
})

Example 3: jquery close bootstrap model

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

Example 4: 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 5: modal show not close jquery

jQuery('#modal_ajax').modal('show', {backdrop: 'static', keyboard: false});