
Jan 7th, 2007, 02:02
|
 |
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");
}
|