I need to make sure that when the user clicks OK in a JavaScript alert window, the browser moves to a different URL. Is this possible?
I think what you need is this :
if(confirm("Do u want to continue?")) { window.location.href = "/some/url" }