1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-07-02 02:15:28 +00:00
elinks/test/ecmascript/parentElement.html
2021-05-16 15:56:02 +02:00

26 lines
409 B
HTML

<!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").parentElement.tagName;
alert(x);
}
</script>
</body>
</html>