DONATE button

M

Mark Flynn

Using FP2k, I'm creating a "Donate" page. I inserted a push button using:
Insert > Form > Push Button. I selected the push button "DONATE" and
inserted a hyperlink.
When I use preview the page, the "DONATE" button does not link to the target
page. Also my mouse arrow does not convert to the hand symbol.
Any ideas?
Thanks, Mark Flynn
 
R

Ronx

<form method="GET" action="newpage.htm">
<p><input type="submit" value="Donate" name="B1"></p>
</form>

or

<form>
<p><button name="B4" onclick="document.location='newpage.htm';">
Donate</button></p>
</form>

1st example does not require JavaScript
 
R

Ronx

PS If you are using a form type button, you do not need a Hand
cursor - visitors will know where to click and expect a new page.
 
Top