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>
|
Are CDATA tags ever necessary in script tags and if so when? In other words, when and where is this:
preferable to this:
|
|||||||||||||||||||
|
|
A CDATA section is required if you need your document to parse as XML (e.g. when an XHTML page is interpreted as XML) and you want to be able to write literal Note that many XHTML pages were never intended to be parsed as XML in which case this will not be an issue. For a good writeup on the subject, see http://javascript.about.com/library/blxhtml.htm |
|||||||||||||||||||||
|
HTMLAn HTML parser will treat everything between So, in HTML, this is not possible:
A
or similar. This also applies to XHTML files served as XMLIn 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 So, in XHTML, this is not possible:
To work around this, you can wrap the whole script in a If your script does not contain any " |
|||||||||||||||||
|
|
When browsers treat the markup as XML:
When browsers treat the markup as HTML:
When browsers treat the markup as HTML and you want your XHTML 1.0 markup (for example) to validate.
|
|||||||||
|
|
It's an X(HT)ML thing. When you use symbols like The CDATA means that the following lines (everything up unto the |
|||
|
|
|
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.:
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. |
|||
|
|
|
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.
You can learn more about CDATA here, and more about XHTML here. |
|||
|
|
|
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 >. |
|||||||||
|
|
When you are going for strict XHTML compliance, you need the CDATA so less than and ampersands are not flagged as invalid characters. |
|||
|
|
|
CDATA tells the browser to display the text as is and not to render it as an HTML. |
|||
|
|
|
CDATA indicates that the contents within are not XML. |
|||
|
|
|
When you want it to validate (in XML/XHTML - thanks, Loren Segal). |
|||||
|
|
CDATA is necessary in any XML dialect, because text within an XML node is treated as a child element before being evaluated as JavaScript. This is also the reason why JSLint complains about the |
|||
|
|
|
That way older browser don't parse the Javascript code and the page doesn't break. Backwards compatability. Gotta love it. |
|||
|
|