Is there a way to make a button on a form in a html document a link? I want to link it to another page, thanks
| SitePoint Sponsor |
Is there a way to make a button on a form in a html document a link? I want to link it to another page, thanks
"Does this napkin smell like chloroform?"
...now with SnapFoo!
My Blog | My Twitter | My Company | SitePoint Podcast
*** Matt Mullenweg on the SitePoint Podcast ***





Brad...I am nost sure exactly what you are wanting. but you can make the button a redirect. Use this hidden input type along with the button.
<INPUT TYPE="hidden" NAME="thankyou" VALUE="path/to/new/page.html">
Adobe Certified Coldfusion MX 7 Developer
Adobe Certified Advanced Coldfusion MX Developer
My Blog (new) | My Family | My Freelance | My Recipes


Williamsba,
Try
Code:<input type="Button" value="Button Name" onClick="javascript:location='your_page.html'">
Bookmarks