javascripthtmlalertreloadalertify

i would like to reload the index.html page after clicking "ok" with alertify


I have this line of javascript in my code

alertify.alert("<div class='alert'>Some speech</div>");

I would like to reload the index.html page after clicking "ok"

Is it possible without going on alertify.confirm?


Solution

  • Well, You can use this code to achieve what you want:

    alertify.alert("This is an alert dialog.", function(){
        location.reload();
    });
    

    Below is the link to the demo: http://jsfiddle.net/5HygY/67/

    I hope this helps.