Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

submit button ??

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
i'm using a hand held device that does not support javascript and only supports html 3.2

does anyone know how to make the text wrap in a submit value? using the image type of input won't work, either

I want to make the submit button large enough so users can use their finger rather than the stylus for the device

instead of: SUBMIT THE FORM

I want SUBMIT
THE FORM
 
If I understand you correctly, you want to make the text wrap on a submit button. I have never had to do this before but you might try using the <BR> tag inside the input tag.
 
All the stuff I've read says that Submit buttons (reset also) are not manipulated easily. I suggest using a graphic image and use <input type=&quot;image&quot;> tag. This will do the submit for you. There's always a better way...
 
For IE 5+

<button onClick=&quot;formname.submit()&quot;>Submit<br>the form</button>

I did it before with a normal input, also. I'm looking fo rhow I did it.


Rick if(($question==&quot;has been bugging me&quot;
AND $answer==&quot;fixed the problem&quot;) OR $answer==&quot;really good post&quot;){
print(&quot;Star&quot;);
}else{
print(&quot;Thanks.&quot;);
}
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top