modal close js code example
Example 1: javascript modal close
$('#closemodal').click(function() {
$('#modalwindow').modal('hide');
});
Example 2: close bootstrap modal with javascript
$('#myModal').modal('hide');
Example 3: when modal close event
$("yourid").on('hide.bs.modal', function(){
// do it here
});
Example 4: open bootstrap modal with javascript
$("#myModal").modal()