jquery show bootstrap 3 modal code example
Example 1: onclick open modal jquery
$('#myModal').modal('show');
Example 2: jquery modal on show + target button
$('#delete-file-modal').on('show.bs.modal', function (event) {
console.log(event.relatedTarget);
});