Javascript confirm box, if cancel is clicked, it will not reload the page

Yanyan picture Yanyan · Mar 1, 2014 · Viewed 21.6k times · Source

Is there away that the confirm box appeared, if i clicked "ok" it will go to another page and if i clicked "cancel" it will just stay and the current page will not reload again? THANK YOU.

Answer

Kuldeep Choudhary picture Kuldeep Choudhary · Mar 1, 2014
function reload()
{
    var r=confirm("Do you want to leave page!");
    if (r)
    {
        //write redirection code
        window.location = "http://www.yoururl.com";
    }
    else
   {
        //do nothing
    }
}

call this function when you want to confirmation from user.........