Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

what is the code to disable an INPUT text box for HTML?

Thanks

share|improve this question

3 Answers

up vote 43 down vote accepted
<input type="text" disabled="disabled"/>

See the HTML 4.01 spec for more information on form inputs.

share|improve this answer
<input type="text" required="true" value="" readonly="true">

This will make a text box in readonly mode, might be helpful in generating passwords and datepickers.

share|improve this answer

The syntax to disable an HTML input is as follows:

<input type="text" id="input_id" DISABLED />
share|improve this answer
1  
RoBorg's answer is valid in XHTML also. – scunliffe Dec 16 '08 at 20:54
The HTML 4.1 Specification he directs to, has the same code as in my answer. – fasih.ahmed Dec 17 '08 at 4:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.