1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-07-04 02:35:29 +00:00
elinks/test/ecmascript/outer.html

19 lines
372 B
HTML
Raw Normal View History

2021-05-04 13:32:29 +00:00
<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()
{
window.alert(document.getElementById('blabla').outerHTML);
window.alert(document.getElementById('ble').outerHTML);
2021-05-04 13:32:29 +00:00
}
</script>
<button onclick="return aa()">Click me!</button>
</body>
</html>