I am trying to refresh my current page after I close bootstrap modal.
$('#modal1').on('hide', function() {
window.location.href = 'current-page.php';
})
Is there a way for refresh current page after closing modal.
You can refresh current page after you close modal by this:
$('#modal1').on('hide', function() {
window.location.reload();
});