Click to See Complete Forum and Search --> : A stupid question!!!


D.S.R.Clark
07-25-2003, 07:50 PM
I'm doing something real stupid, and it hurts!

I want to use a standard button to change pages(URL's) in the same window. I have learned to do more complicatd things, but this simple things eludes me!


<a href="http://www.anywhere.com ????????????????>
<INPUTE TYPE="BUTTON" VALUE="NEXT"></a>

Can someone please help!

Thank you in advance.
David Clark

kdcgrohl
07-25-2003, 08:02 PM
<input type="button" value="Next" onClick="location.href='http://www.anywhere.com';">

Sonia
07-26-2003, 11:20 AM
The only stupid question is the one that you didn't ask !?!!

<input type = button value = "Next" onClick ="window.location = 'http://www.anywhere.com' ">