How to reload page after bootstrap modal closed

9.7k Views Asked by At
$("#customerAdded").modal("show").on("shown.bs.modal", function () {
                window.setTimeout(function () {
                    $("#customerAdded").modal("hide");
                }, 5000);
                location.reload();                  
            });

Ok, it works. But with location.reload(), despite I change the time, the page is reloaded immediately. I would, after modal closed, that the page was reloaded according the time specified.

3

There are 3 best solutions below

0
On BEST ANSWER

You could just fire the location.reload() when you hide your modal:

$("#customerAdded")
.modal("show")
.on("shown.bs.modal", function () {
    window.setTimeout(function () {
        $("#customerAdded").modal("hide");
        location.reload(); 
    }, 5000);                 
});
0
On

Here is the code

$('#customerAdded').on('hidden', function () {
    location.reload();
})
0
On
$("#customerAdded").modal("hide").on("hidden.bs.modal", function () {        
        location.reload();                   
});