1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-20 00:15:31 +00:00
elinks/test/ecmascript/title.html
Witold Filipczyk 10bfe65e05 [quickjs] remember elements nodes in map.
title.html example works
2021-11-09 18:44:12 +01:00

26 lines
461 B
HTML

<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()
{
window.alert(document.getElementById('ble').title);
}
function bb()
{
document.getElementById('ble').title = 'BLEBLE';
aa();
}
</script>
<button onclick="return aa()">Click me!</button>
<button onclick="return bb()">Change title of element</button>
</body>
</html>