Easy Tutorial
❮ Dom Met Element Getelementsbytagname Prop Document Xmlversion ❯

XML DOM xmlEncoding Property



Definition and Usage

The xmlEncoding property returns the encoding of the document.

Syntax


Example

The following code snippet uses loadXMLDoc() to load "books.xml" into xmlDoc and displays the XML encoding, standalone attribute, and the XML version of the document:

Example

xmlDoc=loadXMLDoc("books.xml");

document.write("XML encoding: " + xmlDoc.xmlEncoding);
document.write("<br>");
document.write("XML standalone: " + xmlDoc.xmlStandalone);
document.write("<br>");
document.write("XML version: " + xmlDoc.xmlVersion);
document.write("<br>");
document.write("Encoding used when parsing: " + xmlDoc.inputEncoding);

Output:

XML encoding: UTF-8
XML standalone: false
XML version: 1.0
Encoding used when parsing: UTF-8

❮ Dom Met Element Getelementsbytagname Prop Document Xmlversion ❯