bootstrap modal 'show.bs.modal' code example
Example 1: bootstrap 4 hide modal via javascript
$('#myModal').modal('hide')
Example 2: how to show bootstrap modal
<script>
var myModal = new bootstrap.Modal(document.getElementById('ModalID'))
myModal.show()
</script>