Hi,
I've got some javascript that attempts to set the innerHTML of a div with the result of an xslt. It works great if the output is something like:
However, if the output is an input field it fails:
This xsl works in both firefox 2 and opera 9, just not ie7?
ie throws "XML Parsing Error: The following tags were not closed: input"
Any ideas as to why?
Thanks for the help!
I've got some javascript that attempts to set the innerHTML of a div with the result of an xslt. It works great if the output is something like:
Code:
<p>hello world</p>
Code:
<input type="text" name"test" value="please work" />
ie throws "XML Parsing Error: The following tags were not closed: input"
Any ideas as to why?
Thanks for the help!
Comment