1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-28 03:06:20 -04:00
elinks/test/ecmascript/nodeValue.html
2021-05-18 18:36:01 +02:00

19 lines
313 B
HTML

<!DOCTYPE html>
<html>
<body>
<p id="myP"><!--Click the button--> to get the node type of this element.</p>
<button onclick="myFunction()">Try it</button>
<p id="demo"></p>
<script>
function myFunction() {
var x = document.getElementById("myP").firstChild.nodeValue;
alert(x);
}
</script>
</body>
</html>