1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-28 01:35:32 +00:00
elinks/test/ecmascript/outer.html
2021-05-09 21:21:24 +02:00

19 lines
358 B
HTML

<html>
<body>
<a href="/home">BBB</a>
<b id="aaaa">bbb</b>
<a id="blabla" href="/">
<b>AAA</b><u id="ble">UUU</u>AAAAAAA
</a>
<a id="bb" href="/">BB</a>
<script>
function aa()
{
alert(document.getElementById('blabla').outerHTML);
alert(document.getElementById('ble').outerHTML);
}
</script>
<button onclick="return aa()">Click me!</button>
</body>
</html>