1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-07-01 02:05:33 +00:00
elinks/test/ecmascript/childElementCount.html

21 lines
445 B
HTML
Raw Normal View History

2021-05-08 19:51:34 +00:00
<html>
<body>
<a id="blabla" href="/" rel="nofollow"><b>AAA</b><u id="ble">UUU</u></a>
<b id="empty"></b>
<script>
function aa()
{
window.alert(document.getElementById('blabla').childElementCount);
2021-05-08 19:51:34 +00:00
}
function bb()
{
window.alert(document.getElementById('empty').childElementCount);
2021-05-08 19:51:34 +00:00
}
</script>
<button onclick="return aa()">blabla child element count</button>
<button onclick="return bb()">empty child element count</button>
</body>
</html>