7. XML CDATA

XML CDATA also means character data. XML CDATA is text that will not be parsed by a parser. Tags inside the text will not be treated as markup and entities will not be expanded.

Example 7.1 An XML Element with CDATA
<script type="text/javascript">
<![CDATA[
	alert("Hello world");
]]>
</script>