Forum Moderators: open

Message Too Old, No Replies

How do I make a button that brings up a new web browser?

         

Callie

5:24 am on Aug 28, 2005 (gmt 0)

10+ Year Member



How do I make a button that brings up a new web browser?

Thanks

encyclo

1:07 pm on Aug 28, 2005 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Welcome to the forums Callie!

Try something like this:

<input type="button" value="Go!" [b]onclick="window.open('http://www.example.com/');"[/b]>

You can change the text "Go!" in the

value
attribute to the text you want for your button. :)

Callie

4:34 am on Aug 29, 2005 (gmt 0)

10+ Year Member



Ah... thanks.