bootstrap show modal js code example
Example 1: programmatically show modal boostrap
$('#myModal').modal('show');
Example 2: open bootstrap modal using javascript
$("#myModal").modal();
$('#myModal').modal('toggle');
$('#myModal').modal('show');
$('#myModal').modal('hide');
Example 3: open modal in jqwuery
$("#myModal").modal('show')
Example 4: open bootstrap modal with javascript
$("#myModal").modal()
Example 5: how to show bootstrap modal
<script>
var myModal = new bootstrap.Modal(document.getElementById('ModalID'))
myModal.show()
</script>
Example 6: html data-target modal
$('#myModal').modal('show')