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

I noticed in our code that there is a disabled = ture' i the source code for anchor tag. I was wondering why it works in IE. I also searched the internet and it is also being used in a lot of source code via a search in the net. I have been searching if ture, a wrong spelling of true can also be used by IE.

Does anybody have any idea about this?

share|improve this question
4  
lol. well, they allow all sorts of malformed HTML and mismatched tags... why not allow grammatical errors too? :p I'm guessing anything but "false" evaluates to true...or something like that. – Mark Oct 13 '09 at 6:31
Nah, <input disabled="false"> is also disabled :-P – Nickolay Oct 13 '09 at 7:19
2  
KLE. I noticed you changed the spelling of ture to true. Actually, it really is {disabled= ture'} in our code. Even wrong spelling is accepted, it is not even true. I guess the browser will accept any value. :) – Nap Oct 15 '09 at 3:59

5 Answers

up vote 10 down vote accepted

It used to be that to disable an element, you just did <input type="text" disabled>, so most browsers don't really care what goes in that attribute. I believe making it disabled="disabled" became a standard solely so that the code would be valid XML.

share|improve this answer
1  
Addition: HTML5 now codifies the <input disabled> syntax and even gives it in examples: whatwg.org/specs/web-apps/current-work – Nickolay Oct 13 '09 at 7:18
HTML 4 had that: w3.org/TR/html4/interact/forms.html#adef-disabled (HTML 3.2 didn't have a disabled attribute at all, but the checked attribute works that way: w3.org/TR/REC-html32#input ) – Quentin Oct 13 '09 at 9:23
2  
This is called attribute minimisation, and goes back to the SGML standard on which HTML was (sort of) originally built. – bobince Oct 13 '09 at 12:01

IE only checks for the existence of the disabled property. It's value doesn't matter.

share|improve this answer

The disable attribute can take one value: 'disabled'

All instances of this attribute in HTML allow the quotes, separator and name to be omitted (leaving just the unquoted value).

Since browsers implement tag soup parsers and perform vast amounts of error recovery, disabled=pretty much anything will be treated as disabled.

(And I guess that Microsoft have implemented disabled on anchors for some reason, despite the attribute not existing for that element).

share|improve this answer

you can use this code if you want to disable it according to user level insert it inside the input form tag hope to help

<?php 
if($_SESSION['user_level']=="level1")
{
?>  

disabled="disabled"  

<?php 
}
?>
share|improve this answer

IE is notorious for allowing error-filled HTML code to work; this is why many people mistakenly "blame" it for issues, but actually it's just they've been doing things wrong.

I believe IE allows diabled to be set to anything (other than false) to mean that it's true, because I think in the past people have written disabled='disabled', and other such things.

share|improve this answer

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.