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

29 lines
664 B
HTML
Raw Permalink Normal View History

2021-05-16 17:26:24 +00:00
<!DOCTYPE html>
<html>
<body>
<ul id="myList">
<li>Coffee</li>
<li>Tea</li>
</ul>
<p>Click the button to see if the ul element has any child nodes.</p>
<button onclick="myFunction()">Try it</button>
<p>Try removing the child nodes of the list element, and the result will be false instead of true.</p>
<p><strong>Note:</strong> Whitespace inside a node is considered as text nodes, so if you leave any white space or line feeds inside an element, that element still has child nodes.</p>
<p id="demo"></p>
<script>
function myFunction() {
var list = document.getElementById("myList").hasChildNodes();
window.alert(list);
2021-05-16 17:26:24 +00:00
}
</script>
</body>
</html>