mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-03 08:07:17 -05:00
22 lines
412 B
HTML
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>
|