mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-04 08:17:17 -05:00
18 lines
357 B
HTML
18 lines
357 B
HTML
<html>
|
|
<body>
|
|
<a href="/home">BBB</a>
|
|
<textarea cols="5" rows="10" id="aaaa">bbb</textarea>
|
|
<a id="blabla" href="/">
|
|
<b>AAA</b><u id="ble" title="test">UUU</u>AAAAAAA
|
|
</a>
|
|
<a id="bb" href="/">BB</a>
|
|
<script>
|
|
function aa()
|
|
{
|
|
window.alert(document.getElementById('aaaa').tagName);
|
|
}
|
|
</script>
|
|
<button onclick="return aa()">Click me!</button>
|
|
</body>
|
|
</html>
|