Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
What does it mean in HTML 5 when an attribute is a boolean attribute?

So I have seen it a lot of ways and appearently everyone here thinks w3schools is not trustworthy.

This:

<video controls="controls" autoplay="autoplay">
...
</video>

or this:

<video controls autoplay>
...
</video>

or even this:

<video controls="true" autoplay="true">
...
</video>

The true/false one makes the most sense to me, however, most I have seen work in all major browsers.

share|improve this question

marked as duplicate by Nix, Jan Dvorak, DocMax, Sameer, Ed Heal Jan 3 at 4:42

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 1 down vote accepted

Those are called boolean attributes on the W3C Html5 specification, which proposes that the presence of a boolean attribute makes it true, and absence makes it false, like this:

<video controls autoplay>

but it also mentions that this could be equivalently written as:

<video controls=controls autoplay=autoplay> (values can be quoted also) or
<video controls="" autoplay="">

But specifically forbids "true" or "false" as attribute values:

The values "true" and "false" are not allowed on boolean attributes.

Also see http://www.whatwg.org/specs/web-apps/current-work/multipage/the-video-element.html#the-video-element and http://www.w3.org/2010/05/video/mediaevents.html for the video tag spec and the Html5 media API and events.

share|improve this answer
Great. Thank you. Sorry for the dup. – fredsbend Jan 3 at 1:40
@JanDvorak fixed the answer. – peterhil Jan 3 at 2:34

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