1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-20 00:15:31 +00:00
elinks/test/ecmascript/element.html
2021-11-10 18:05:35 +01:00

16 lines
273 B
HTML

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