1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-27 01:25:34 +00:00
elinks/test/ecmascript/tagName.html

18 lines
357 B
HTML
Raw Permalink Normal View History

2021-05-04 14:06:50 +00:00
<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()
{
2021-11-10 16:33:59 +00:00
window.alert(document.getElementById('aaaa').tagName);
2021-05-04 14:06:50 +00:00
}
</script>
<button onclick="return aa()">Click me!</button>
</body>
</html>