Back to Content

XPath

files/en-us/web/xml/xpath/index.md

latest2.5 KB
Original Source

XPath stands for XML Path Language. It uses a non-XML syntax to provide a flexible way of addressing (pointing to) different parts of an XML document. It can also be used to test addressed nodes within a document to determine whether they match a pattern or not.

XPath is mainly used in XSLT, but can also be used as a much more powerful way of navigating through the DOM of any XML-like language document using {{DOMxRef("XPathExpression")}}, such as HTML and SVG, instead of relying on the {{DOMxRef("Document.getElementById()")}} or {{DOMxRef("Document.querySelectorAll()")}} methods, the {{DOMxRef("Node.childNodes")}} properties, and other DOM Core features.

XPath uses a path notation (as in URLs) for navigating through the hierarchical structure of an XML document. It uses a non-XML syntax so that it can be used in URIs and XML attribute values.

Guides

The XPath guides cover practical snippets and describe how to use XPath in JavaScript.

Reference

The XPath reference covers all XPath axes and functions documented on MDN.

  • XPath:Axes
    • : List and definition of the axes defined in the XPath specification. Axes are used to describe the relationships between nodes.
  • XPath:Functions
    • : List and description of the core XPath functions and XSLT-specific additions to XPath.

See also