javascript Modal code example
Example 1: jquery modal on show + target button
$('#delete-file-modal').on('show.bs.modal', function (event) {
console.log(event.relatedTarget);
});
Example 2: open modal js
$('#modal-name').modal('show');
Example 3: how to make popup modal in jquery with example
$("#sticky").modal({
escapeClose: false,
clickClose: false,
showClose: false
});