|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
I want to eliminate the "submit" button on my form... at the end of my form, I have :
<input type="submit" value="submit"> how can I make a submit "link", text instead of the button? Thanks, Mike |
|
#2
|
|||
|
|||
|
You can use either <input type="image"> or <a onclick="javascript:document.whateverform.submit()">Submit me</a> (It's something like this. Not tested, easy enough to find if you want to
![]() |
|
#3
|
|||
|
|||
|
<input type="image"> ?
does it have to be an image? Can't be text? Like input type="submit" text="Submit"... man, that bites. Mike |
|
#4
|
|||
|
|||
|
Use:
<a href="javascript:void(null);" onClick="document.formname.submit();">Submit Form</a> Keep in mind that this will only work as long as the action of your form is not a mailto: at least for NS anyways. It should work in IE. Spookster |
![]() |
| Viewing: Dev Shed Forums > Web Design > HTML Programming > submit, without the button? |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|