1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-19 01:36:33 -04:00
elinks/test/ecmascript/title.html

26 lines
454 B
HTML
Raw Normal View History

2021-05-04 09:42:52 -04:00
<html>
<body>
<a href="/home">BBB</a>
<b id="aaaa">bbb</b>
<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()
{
alert(document.getElementById('ble').title);
}
2021-06-03 08:05:00 -04:00
function bb()
{
document.getElementById('ble').title = 'BLEBLE';
aa();
}
2021-05-04 09:42:52 -04:00
</script>
<button onclick="return aa()">Click me!</button>
2021-06-03 08:05:00 -04:00
<button onclick="return bb()">Change title of element</button>
2021-05-04 09:42:52 -04:00
</body>
</html>