faqts : Computers : Internet : Web : HTML : Forms

+ Search
Add Entry AlertManage Folder Edit Entry Add page to http://del.icio.us/
Did You Find This Entry Useful?

34 of 61 people (56%) answered Yes
Recently 7 of 10 people (70%) answered Yes

Entry

How can I create a invisible input text box ?

Jul 30th, 2001 06:00
Ben Gordon, vidya veeraraghavan,


You can't create (to my knowledge) an invisible input text box (text box 
denotes that it is visible), you can create either a text box then 
disable the box (so no text can be entered) or create a "hidden" input  
like this 
Hidden
<input type=hidden name="recipient" value="webmaster@yourdomain.com">
Disabled
<input disabled>
note this will only work in IE 4 & above