What is wrong with my HTML document?

<html>
  <body>
    <p><![CDATA[I can't see this text :(]]></p>
  </body>
</html>

Why don't I see the text inside CDATA?

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

Explicit CDATA sections are, in practice, unsupported in text/html documents. They are marked as a feature authors should avoid because they have limited support.

Your browser is probably treating it as an unknown element.

link|improve this answer
1  
Do you know any alternative to CDATA? How can I use a potentially ill-formed XML/HTML inside well-formed XHTML document? – yegor256 Oct 7 '10 at 10:23
Alternative to CDATA? Replace characters with special meaning with entities. Dealing with ill-formed data? Clean it up before inserting it (maybe with an HTML 5 parser) or reject it if it isn't well-formed at the input stage. – Quentin Oct 7 '10 at 10:24
I solved the problem by changing the MIME type of the web page from text/html to application/xml. Now everything works fine. – yegor256 Oct 7 '10 at 10:32
@Vincenzo IE doesn't support application/xml. – RoToRa Oct 7 '10 at 10:47
feedback

Your Answer

 
or
required, but never shown

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