open html page in modal popup bootstrap code example
Example 1: javascript modal close
$('#closemodal').click(function() {
$('#modalwindow').modal('hide');
});
Example 2: open bootstrap modal using javascript
$("#myModal").modal();
$('#myModal').modal('toggle');
$('#myModal').modal('show');
$('#myModal').modal('hide');
Example 3: open bootstrap modal with javascript
$("#myModal").modal()
Example 4: how to show bootstrap modal
<script>
var myModal = new bootstrap.Modal(document.getElementById('ModalID'))
myModal.show()
</script>