Quote:
Originally Posted by Philip M
As this is an anchor link you cannot use a button, but you can use an image:-
<p align="center"><a href="#pagetop"><img src="topPage.gif" width="54" height="29" border="0"></a></p>
and at the top of the page put
<a name="pagetop"></a>
If you insist on a button you can make an image which looks just like a button.
You can use a button to link to another page:-
Code:
<form>
<input type ="button" value = "Go to Google" onClick="parent.location='http://www.google.com'">
<form>
|
What about linking to the same page instead of another page?
Quote:
<form>
<input type="button" value="Go to Top of the Page" onClick="parent.location='home1.htm'">
</form>
|
It works perfectly fine now!