Re: XML Declaration
"bruno vernay" <[email protected]>
| Newsgroups | gmane.comp.mozilla.devel.xml |
|---|---|
| Organization | http://groups.google.com |
| Message-ID | <[email protected]> |
Dirty hack :
var piElem = doc.createProcessingInstruction("xml", "version='1.0'
encoding='UTF8'");
...
doc.appendChild(rootElem);
doc.insertBefore(piElem, rootElem);
Note :
- you can claim UTF-8 and encode in ISO-8859-1
- a XML Declaration is not a Processing Instruction
Real dirty ...