Search code examples
jquerytwitter-bootstrapbootstrap-modal

Refresh page after bootstrap modal close


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.


Solution

  • You can refresh current page after you close modal by this:

    $('#modal1').on('hide', function() {
    window.location.reload();
    });