On this page
Methods

Interface XPathExpression

This interface is a compiled XPath expression that can be evaluated on a document or specific node to return information from its DOM tree.

MDN Reference

interface XPathExpression {
    evaluate(
        contextNode: Node,
        type?: number,
        result?: XPathResult | null,
    ): XPathResult;
}
Index

Methods

Methods

Was this helpful?
SDK JS
Reference
XPathExpression