1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-20 00:15:31 +00:00
elinks/test/ecmascript/clickListener2.html
2022-11-11 19:20:24 +01:00

22 lines
412 B
HTML

<html>
<head>
<script>
function cli()
{
alert("document.location.href='http://www.elinks.cz';");
}
function loader()
{
document.getElementById('c').addEventListener('click', function() { alert('aaaa'); });
document.getElementById('c').addEventListener('click', cli);
}
</script>
</head>
<body onload="loader()">
<center>
<button id="c" value="ELinks homepage">AAA</button>
</center>
</body>
</html>