View previous topic :: View next topic |
Author |
Message |
Arctic -
Joined: 24 Sep 2004 Posts: 560
|
Posted: Sun Jul 17, 2005 6:46 am Post subject: Help! |
|
|
How do I turn this button:
<input type="submit" name="search" value="Go" />
Into plain text but with the same function? Like [Go] |
|
Back to top |
 |
 |
aprelium -
Joined: 22 Mar 2002 Posts: 6800
|
Posted: Sun Jul 17, 2005 11:15 am Post subject: Re: Help! |
|
|
Arctic,
Code: | <A HREF="#" ONCLICK="document.FORMNAME.submit()">[GO]</A> |
Change FORMNAME with the name of the FORM you want to associate this text link with. For example, if your FORM is declared as:
Code: | <form id="mainform" ACTION="process.php" method="POST">
.
.
</form> |
Then, the code for the link should be:
Code: | <A HREF="#" ONCLICK="document.mainform.submit()">[GO]</A> |
_________________ Support Team
Aprelium - http://www.aprelium.com |
|
Back to top |
|
 |
Arctic -
Joined: 24 Sep 2004 Posts: 560
|
Posted: Sun Jul 17, 2005 1:38 pm Post subject: |
|
|
Thank you, Aprelium :-D |
|
Back to top |
 |
 |
|