bootstrap jquery show modal 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: open modal in jqwuery
$("#myModal").modal('show')
Example 4: how to show bootstrap modal
<script>
var myModal = new bootstrap.Modal(document.getElementById('ModalID'))
myModal.show()
</script>