I am in the process of converting all HTML documents, including many
dynamic/interactive documents, to XHTML documents (because I want to
incorporate SVG and MathML, among other things).
I am having a problem converting
document.write( )
statements which are not allowed in XHTML documents to statements which
create the DOM nodes/elements dynamically within script elements.
Are there examples on the web or discussion in books about working with
XHTML?
I have a lot of books on Javascript and I think on DOM, but they don't seem
to talk about XHTML documents. I had to find out that document.write( ) was
not allowed from someone in a newsgroup, who directed me to the W3 FAQ on
this.
Comment