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

21 lines
312 B
HTML
Raw Normal View History

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