mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-04 08:17:17 -05:00
16 lines
266 B
HTML
16 lines
266 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()
|
||
|
{
|
||
|
alert(document.getElementById('blabla').id);
|
||
|
}
|
||
|
</script>
|
||
|
<button onclick="return aa()">Click me!</button>
|
||
|
</body>
|
||
|
</html>
|