mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-02 08:57:19 -04:00
18 lines
348 B
HTML
18 lines
348 B
HTML
<html>
|
|
<body>
|
|
<a href="/home">BBB</a>
|
|
<b id="aaaa">bbb</b>
|
|
<a id="blabla" href="/" rel="nofollow">
|
|
<b>AAA</b><u id="ble">UUU</u>AAAAAAA
|
|
</a>
|
|
<a id="bb" href="/">BB</a>
|
|
<script>
|
|
function aa()
|
|
{
|
|
window.alert(document.getElementById('blabla').hasAttributes());
|
|
}
|
|
</script>
|
|
<button onclick="return aa()">blabla has attributes</button>
|
|
</body>
|
|
</html>
|