faqts : Computers : Programming : Languages : JavaScript : Forms : TextAreas/TextFields

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

73 of 98 people (74%) answered Yes
Recently 6 of 10 people (60%) answered Yes

Entry

how can i disable the text box and also enabling the data to be submitted

Oct 23rd, 2001 20:36
vempati suresh, jeevan bangera,


<html>
<body>
<form>
<input type="text" value="this text will get submitted" readonly>
<input type="submit">
</form>
</body>
</html