View Single Post
  #2 (permalink)  
Old Jan 7th, 2007, 02:02
Ryan Fait's Avatar
Ryan Fait Ryan Fait is offline
SuperMember

SuperMember
Join Date: May 2006
Location: Las Vegas
Posts: 3,786
Thanks: 0
Thanked 0 Times in 0 Posts
Re: javascript alert

Yeah, this should work:

Code: Select all
if(confirm("Do you want to go?")) {
    window.open("http://google.com");
}
Reply With Quote