bootstrap modal show jquery code example

Example 1: onclick open modal jquery

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

Example 2: programmatically show modal boostrap

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

Example 3: onclick open modal jquery

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

Example 4: hide bootstrap modal jquery

$(document).ready(function(){
        $(".btn").click(function(){
            $("#myModal").modal('hide');
        });
});

Example 5: how to show bootstrap modal

<script>
    var myModal = new bootstrap.Modal(document.getElementById('ModalID'))
    myModal.show()
</script>

Example 6: onclick open modal jquery

$('#my-modal').modal({
    show: 'false'
});

Tags:

Php Example