Hello Reader!
If you got confuse to write the correct syntax of writing the disabled text box then you can use these types of code as below:-
<input type="text" disabled />
<input type="text" disabled="" />
<input type="text" disabled="disabled" />
<input type="text" disabled="DiSaBlEd" /> //in this case you even can write disabled regardless of case
These all four syntax will work with almost all browser, Other than these you'r text will not be disabled.
0 Comment(s)