what is the difference between

 <input name="TextBox1" type="text" id="TextBox1" readonly="true" />
   &
  <input name="TextBox1" type="text" id="TextBox1" readonly="readonly" />

when i set readonly to true it works somewhat different from readonly='readonly'. W3C standard says readonly should be 'readonly' & not 'true'. why most of the browsers allow readonly='true' which has somewhat different functionality than readonly='readonly'

link|improve this question

71% accept rate
What markup DOCTYPE, DTD, and what browser mode? – Keith May 30 '11 at 6:27
A more global answer for your specific question is that browsers are made to be compatible with all sorts of loose (and sometimes terrible) coding. Figuring out the strictest coding that will work with all browsers is a virtue, because kludges will only work until browser developers get fed up with them :) – Merlyn Morgan-Graham May 30 '11 at 6:38
feedback

5 Answers

up vote 3 down vote accepted

Giving an element the attribute readonly will give that element the readonly status. It doesn't matter what value you put after it or if you put any value after it, it will still see it as readonly. Putting readonly="false" won't work.

Suggested is to use the W3C standard.

link|improve this answer
feedback

This is a property setting rather than a valued attribute

These property settings are values per see and don't need any assignments to them. When they are present, an element has this boolean property set to true, when they're absent they're false.

<input type="text" readonly />

It's actually browsers that are liberal toward value assignment to them. If you assign any value to them it will simply get ignored. Browsers will only see the presence of a particular property and ignore the value you're trying to assign to them.

This is of course good, because some frameworks don't have the ability to add such properties without providing their value along with them. Asp.net MVC Html helpers are one of them. jQuery used to be the same until version 1.6 where they added the concept of properties.

There are of course some implications that are related to XHTML as well, because attributes in XML need values in order to we well formed. but that's a different story. Hence browsers have to ignore value assignments.

Anyway. Never mind the value you're assigning to them as long as the name is correctly spelled so it will be detected by browsers. But for readability and maintainability it's better to assigned meaningful values to them like:

readony="true" <-- arguably best choice to use
readonly="readonly"

as opposed to

readonly="johndoe"
readonly="01/01/2000"

that may confuse future developers maintaining your code and may interfere with future specification that may define more strict rules to such property settings.

link|improve this answer
Only readonly and readonly="readonly" are valid in HTML. – Tim Down May 30 '11 at 10:01
feedback

I'm not sure how they're functionally different. My current batch of OS X browsers don't show any difference.

I would assume they are all functionally the same due to legacy HTML attribute handling. Back in the day, any flag (Boolean) attribute need only be present, sans value, eg

<input readonly>
<option selected>

When XHTML came along, this syntax wasn't valid and values were required. Whilst the W3 specified using the attribute name as the value, I'm guessing most browser vendors decided to simply check for attribute existence.

link|improve this answer
This has nothing to do with XML being valid, but rather well formed. Validity is related to correct naming and valuing of attributes, their nesting etc. Validity has to do with schema. – Robert Koritnik May 30 '11 at 6:44
@Robert I'm referring to XML syntax though. Valid XML attribute syntax is attribute_name="value" – Phil May 30 '11 at 6:54
@Phil: No that's a well formed attribute. A valid attribute is a int_attribute="1" or bool_attribute="false"... They're of course well formed as well. – Robert Koritnik May 30 '11 at 6:58
@Robert I'm not talking about validating documents. Perhaps I should use the word "legal" in place of "valid" or any other word that defines the accepted or correct use of characters (ie, syntax) – Phil May 30 '11 at 7:06
@Phil. Well formed XML document is one that passes XML formatting validation (ie. single root element, closing element tags and attributes have values (any) assigned to them). But valid XML document is one that is valid against some schema (ie. certain attributes must have correct value type assigned to them, or certain elements can only be nested in particular elements etc.) In your case you're talking about well formed XML attributes (so they have some value assigned to them). – Robert Koritnik May 30 '11 at 7:13
show 2 more comments
feedback

According to HTML standards, the use of

<input name="TextBox1" type="text" id="TextBox1" readonly/>

is enough to make the input element readonly. But, XHTML standard says that the usage listed above is invalid. You can refer to the link below:

http://www.w3schools.com/xhtml/xhtml_syntax.asp

link|improve this answer
feedback

readonly="readonly" is xhtml syntax. In xhtml boolean attributes are written this way. In xhtml 'attribute minimization' (<input type="checkbox" checked>) isn't allowed, so this is the valid way to include boolean attributes in xhtml. See this page for more.information.

If your document type is xhtml transitional or strict and you want to validate it, use readonly="readonly otherwise readonly is sufficient.

link|improve this answer
... so this is the well formed way to include boolean attributes in XHTML. – Robert Koritnik May 30 '11 at 6:47
@Robert: yep, that the terminology. – KooiInc May 30 '11 at 6:50
feedback

Your Answer

 
or
required, but never shown

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