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

16 lines
405 B
HTML
Raw Normal View History

2021-05-09 19:53:14 +00:00
<html>
<body>
<a href="/home">BBB</a>
<b dir="ltr" id="aaaa" class="a b c">bbb</b>
<a dir="rtl" id="blabla" href="/"><b id="b1">AAA</b><u dir="auto" id="ble" title="test">UUUAAAAAAA</u></a>
<a id="bb" dir="blalalala" href="/">BB</a>
<script>
function aa()
{
window.alert(document.getElementById('blabla').lastChild.innerHTML);
2021-05-09 19:53:14 +00:00
}
</script>
<button onclick="return aa()">Click me!</button>
</body>
</html>