Back to Content

Document: xmlVersion property

files/en-us/web/api/document/xmlversion/index.md

latest801 B
Original Source

{{APIRef("DOM")}}{{deprecated_header}}

Returns the version number as specified in the XML declaration (e.g., <?xml version="1.0"?>) or "1.0" if the declaration is absent.

This attribute was never really useful, since it always returned 1.0, and has been removed in DOM Level 4. As such, Firefox 10 no longer implements it. Its primary use in the past was to detect whether or not the document was being rendered as XML rather than HTML. To detect this, you can create an element with its name in lower case, then check to see if it gets converted into all upper case (in which case the document is in the non-XML HTML mode):

js
if (document.createElement("foo").tagName === "FOO") {
  /* Document is not XML */
}

Specifications

{{Specifications}}

Browser compatibility

{{Compat}}