create modal bootstrap jquery 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: html data-target modal
$('#myModal').modal('show')