
September 10th, 2001, 07:10 AM
|
|
Contributing User
|
|
Join Date: Feb 2001
Location: USA
Posts: 830
Time spent in forums: 3 h 17 m 56 sec
Reputation Power: 13
|
|
Well, a) you're using a non-existent tag, and b) you're using a function that's not really applicable to what you're trying to do. Try this:
Code:
<input type="button" value="goto" onclick="window.location.href=http://somewhere" />
The last time I checked, Opera did not support the button element (pure genius, definitely worth paying for). Alternatively you could do this with an image, a text link, or probably with a submit button. I think the button will not even show up in Netscape if it's not enclosed by form tags.
|