Are CDATA tags ever necessary in script tags and if so when?

In other words, when and where is this:

<script type="text/javascript">
//<![CDATA[
...code...
//]]>
</script>

preferable to this:

<script type="text/javascript">
...code...
</script>
link|improve this question

79% accept rate
3  
Now that XHTML is essentially dead, is this no longer a relevant concern? – allyourcode Jan 30 at 21:49
6  
@allyourcode: what makes you think XHTML is dead? HTML5? There's XHTML5 to go right along with it :) – Doktor J Feb 22 at 14:42
feedback

13 Answers

up vote 127 down vote accepted

A CDATA section is required if you are using XHTML in order for it to validate and you want to be able to write literal i<10 and a && b instead of i&lt;10 and a &amp;&amp; b, as XHTML will parse the JavaScript code as parsed character data as opposed to character data by default. This is not an issue with scripts that are stored in external source files, but for any inline JavaScript in XHTML you will probably want to use a CDATA section.

For a good writeup on the subject, see http://javascript.about.com/library/blxhtml.htm

link|improve this answer
16  
There's a lot more to it than just "validation". Most strict XML parsers won't go through the page if they hit an illegal character. It's more than simply about making W3C happy and getting green instead of red. – Loren Segal Sep 15 '08 at 20:58
20  
If you avoid & and < characters, you don't need a CDATA section; it'll work fine in both HTML and XHTML. You can easily achieve this by putting all significant code in external scripts and just using inline scripts to eg. initialise variables (escaping &/< to \x26/\x3C in string literals if you need). – bobince Sep 20 '09 at 9:10
13  
What about in the case of HTML5? – Mathew Attlee Dec 2 '09 at 11:44
2  
@Mathew Attle - this is a good question. Be a great question to ask on a separate thread to ensure it gets the attention it needs. – Alex Key Nov 6 '10 at 19:01
@Loren: Then it's still completely about validation. The extent to which a user-agent rejects invalid XML is orthogonal. – Lightness Races in Orbit Jun 9 '11 at 18:09
show 2 more comments
feedback

HTML

An HTML parser will treat everything between <script> and </script> as part of the script. Some implementations don't even need a correct closing tag; they stop script interpretation at "</", which is correct according to the specs. [update]In HTML5, and with current browsers, that is not the case anymore.[/update]

So, in HTML, this is not possible:

<script>
var x = '</script>';
alert(x)
</script>

A CDATA section has no effect at all. That's why you need to write

var x = '<' + '/script>'; // or
var x = '<\/script>';

or similar.

This also applies to XHTML files served as text/html. (Since IE does not support XML content types, this is mostly true.)

XML

In XML, different rules apply. Note that (non IE) browsers only use an XML parser if the XHMTL document is served with an XML content type.

To the XML parser, a script tag is no better than any other tag. Particularly, a script node may contain non-text child nodes, triggered by "<"; and a "&" sign denotes a character entity.

So, in XHTML, this is not possible:

<script>
if (a<b && c<d) {
    alert('Hooray');
}
</script>

To work around this, you can wrap the whole script in a CDATA section. This tells the parser: 'In this section, don't treat "<" and "&" as control characters.' To prevent the Javascript engine from interpreting the "<![CDATA[" and "]]>" marks, you can wrap them in comments.

If your script does not contain any "<" or "&", you don't need a CDATA section anyway.

link|improve this answer
The statement “A CDATA section has no effect at all” is not true for (the proposed) HTML5, which recognizes the construct. w3.org/TR/html5/syntax.html#cdata-sections – danorton Mar 6 at 20:29
@danorton Interesting. I think that's a pretty ugly mix. Still no effect in script content though. – Pumbaa80 Mar 6 at 22:06
Ah, right you are. The CDATA is not valid within a <script>. – danorton Mar 6 at 23:04
Wow, I thought having scripts as PCDATA in XHTML was cumbersome and pointless; wasn't thinking of what would happen if "</script>" is used if it was CDATA like in HTML4. I love XHTML :) – Hawken May 12 at 19:38
diveintohtml5.info/past.html#xhtml Apparently not all XHTML is made (or served) equal. – jinglesthula May 18 at 18:55
feedback

When browsers treat the markup as XML:

<script>
<![CDATA[
    ...code...
]]>
</script>

When browsers treat the markup as HTML:

<script>
    ...code...
</script>

When browsers treat the markup as HTML and you want your XHTML 1.0 markup (for example) to validate.

<script>
//<![CDATA[
    ...code...
//]]>
</script>
link|improve this answer
+1 for being succinct with use-cases. – Levi Morrison Nov 7 '11 at 21:07
feedback

It's an X(HT)ML thing. When you use symbols like < and > within the JavaScript, e.g. for comparing two integers, this would have to be parsed like XML, thus they would mark as a beginning or end of a tag.

The CDATA means that the following lines (everything up unto the ]]> is not XML and thus should not be parsed that way.

link|improve this answer
feedback

Basically it is to allow to write a document that is both XHTML and HTML. The problem is that within XHTML, the XML parser will interpret the &,<,> characters in the script tag and cause XML parsing error. So, you can write your javascript with entities, e.g.:

if (a &gt; b) then alert('hello world');

But this is impractical. The bigger problem is that if you read the page in HTML, the tag script is considered CDATA 'by default', and such javascript will not run. Therefore, if you want the same page to be OK both using XHTML and HTML parsers, you need to enclose the script tag in CDATA element in XHTML, but NOT to enclose it in HTML.

This trick marks the start of CDATA element as javascript comment; in HTML the javascript parser ignores the CDATA tag (it's a comment). In XHTML, the XML parser (which is run before the javascript) detects it and treats the rest until end of CDATA as CDATA.

link|improve this answer
feedback

When you are going for strict XHTML compliance, you need the CDATA so less than and ampersands are not flagged as invalid characters.

link|improve this answer
feedback

Do not use CDATA in HTML4 but you should use CDATA in XHTML and must use CDATA in XML if you have unescaped symbols like < and >.

link|improve this answer
2  
Why not in HTML4? – Robert Claypool Aug 27 '10 at 19:02
5  
CDATA is not valid in HTML4. Simply put, it's not part of the grammar. CDATA is a syntax of XML, and XHTML is an XML subset. Therefore it should only be used inside XML (and its subsets). HTML on the other hand is not XML. – Loren Segal Aug 30 '10 at 3:59
feedback

to avoid xml errors during xhtml validation.

link|improve this answer
feedback

It to ensure that XHTML validation works correctly when you have javascript embdeded in your page, rather than externally referenced.

XHTML requires that your page strictly conform to XML markup requirements. Since javascript may contain characters with special meaning, you must wrap it in CDATA to ensure that validation does not flag it as malformed.

With HTML pages on the web you can just include the required Javascript between and tags. When you validate the HTML on your web page the Javascript content is considered to be CDATA (character data) that is therefore ignored by the validator. The same is not true if you follow the more recent XHTML standards in setting up your web page. With XHTML the code between the script tags is considered to be PCDATA (parsed character data) which is therefore processed by the validator.

Because of this, you can't just include Javascript between the script tags on your page without 'breaking' your web page (at least as far as the validator is concerned).

You can learn more about CDATA here, and more about XHTML here.

link|improve this answer
feedback

CDATA tells the browser to display the text as is and not to render it as an HTML.

link|improve this answer
feedback

CDATA indicates that the contents within are not XML.

http://en.wikipedia.org/wiki/CDATA

link|improve this answer
feedback

When you want it to validate (in XML/XHTML - thanks, Loren Segal).

link|improve this answer
1  
Woo, unexplained downvote two and a half years later! Heh. – ceejayoz Jan 14 '11 at 20:15
feedback

That way older browser don't parse the Javascript code and the page doesn't break.

Backwards compatability. Gotta love it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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