Skip to content

Instantly share code, notes, and snippets.

@hivefans
Forked from yckart/LICENSE.txt
Created April 17, 2023 00:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hivefans/58e9a75545044fe079ea07057c241d4d to your computer and use it in GitHub Desktop.
Save hivefans/58e9a75545044fe079ea07057c241d4d to your computer and use it in GitHub Desktop.
getElementByXPath | Get DOM-Nodes by its XPath.
function (
a, // the XPath
b // document-placeholder
) {
b = document;
return b.evaluate(
a, // xpathExpression
b, // contextNode
null, // namespaceResolver
9, // resultType
null // result
).singleNodeValue; // the first node
}
function(a,b){b=document;return b.evaluate(a,b,null,9,null).singleNodeValue}
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
Version 2, December 2004
Copyright (C) 2013 Yannick Albert <http://yckart.com>
Everyone is permitted to copy and distribute verbatim or modified
copies of this license document, and changing it is allowed as long
as the name is changed.
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. You just DO WHAT THE FUCK YOU WANT TO.
{
"name": "getElementByXPath",
"description": "Get DOM-Nodes by its XPath.",
"keywords": [
"selector",
"xpath",
"path",
"node",
"dom"
]
}
<!DOCTYPE html>
<title>getElementByXPath | Get DOM-Nodes by its XPath.</title>
<div>Expected value: <b>140byt.es</b></div>
<div>Actual value: <b id="ret"></b></div>
<script>
var getElementByXPath = function(a,b){b=document;return b.evaluate(a,b,null,9,null).singleNodeValue}
var path = '//html[1]/body[1]/div[1]/b[1]';
document.getElementById('ret').innerHTML = getElementByXPath(path).innerHTML;
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment