.modal in javascript code example

Example 1: onclick open modal jquery

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

Example 2: jquery modal on show + target button

$('#delete-file-modal').on('show.bs.modal', function (event) {
    console.log(event.relatedTarget);
});

Example 3: how to make popup modal in jquery with example

<!-- AJAX response must be wrapped in the modal's root class. -->
<div class="modal">
  <p>Second AJAX Example!</p>
</div>

Example 4: how to make popup modal in jquery with example

$('#sub-modal').modal({
  closeExisting: false
});