I have read a bit on this, but I can't seem to find anything solid about how different browsers treat things. I'm building an app that has to be Section 508-compliant (screen-reader accessible) and work clear back to IE 6.
|
a read more about this in this great article or the definition by w3c. to quote the important part:
|
||||
|
|
Disabled means that no data from that form element will be submitted when the form is submitted. Read-only means any data from within the element will be submitted, but it cannot be changed by the user. For example:
This will submit the value "Bob" for the element "yourname".
This will submit nothing for the element "yourname". |
|||
|
|
|
Same as the other answers (disabled isn't sent to the server, readonly is) but some browsers prevent highlighting of a disabled form, while read-only can still be highlighted (and copied). http://www.w3schools.com/tags/att_input_disabled.asp http://www.w3schools.com/tags/att_input_readonly.asp
|
|||
|
|
