Liking cljdoc? Tell your friends :D

web.xpath.XPathEvaluator

The XPathEvaluator interface allows to compile and evaluate XPath

The XPathEvaluator interface allows to compile and evaluate XPath
raw docstring

create-expressioncljs

(create-expression this expression resolver)

Method.

This method compiles an web.xpath.XPathExpression which can be used for (repeated) evaluations of the XPath expression.

XPathExpression XPathEvaluator.createExpression(expression, resolver);

See also: https://developer.mozilla.org/en-US/docs/Web/API/XPathEvaluator/createExpression

Method.

This method compiles an `web.xpath.XPathExpression` which can
be used for (repeated) evaluations of the XPath expression.

`XPathExpression XPathEvaluator.createExpression(expression, resolver);`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/XPathEvaluator/createExpression`
sourceraw docstring

create-ns-resolvercljs

(create-ns-resolver this node-resolver)

Method.

This method adapts any DOM node to resolve namespaces so that XPath expression can be easily evaluated relative to the context the node where it appeared within the document.

XPathNSResolver XPathEvaluator.createNSResolver(nodeResolver);

See also: https://developer.mozilla.org/en-US/docs/Web/API/XPathEvaluator/createNSResolver

Method.

This method adapts any DOM node to resolve namespaces so that
XPath expression can be easily evaluated relative to the context
the node where it appeared within the document.

`XPathNSResolver XPathEvaluator.createNSResolver(nodeResolver);`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/XPathEvaluator/createNSResolver`
sourceraw docstring

evaluatecljs

(evaluate this expression context-node resolver type result)

Method.

The evaluate() method of the web.xpath.XPathEvaluator interface an XPath expression on the given node or document and returns web.xpath.XPathResult.

XPathResult XPathEvaluator.evaluate(expression, contextNode, resolver, type, result);

See also: https://developer.mozilla.org/en-US/docs/Web/API/XPathEvaluator/evaluate

Method.

The evaluate() method of the `web.xpath.XPathEvaluator` interface
an XPath expression on the given node or document and returns
`web.xpath.XPathResult`.

`XPathResult XPathEvaluator.evaluate(expression, contextNode, resolver, type, result);`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/XPathEvaluator/evaluate`
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close