1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-25 01:05:37 +00:00
elinks/test/ecmascript/parentNode.html

26 lines
413 B
HTML
Raw Normal View History

2021-05-16 13:49:38 +00:00
<!DOCTYPE html>
<html>
<body>
<p>Example list:</p>
<ul>
<li id="myLI">Coffee</li>
<li>Tea</li>
</ul>
<p>Click the button to get the node name of the parent node of the li element in the list.</p>
<button onclick="myFunction()">Try it</button>
<p id="demo"></p>
<script>
function myFunction() {
var x = document.getElementById("myLI").parentNode.tagName;
window.alert(x);
2021-05-16 13:49:38 +00:00
}
</script>
</body>
</html>