1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-20 00:15:31 +00:00
elinks/test/ecmascript/keyListener.html
2023-01-26 18:12:46 +01:00

21 lines
419 B
HTML

<!DOCTYPE html>
<html>
<body>
<p>A function is triggered when the user is pressing a key in the input field.</p>
<form action="/">
<input id="k" type="text">
<input type="submit">
</form>
<script>
function myFunction(event)
{
window.alert("You pressed a key with code " + event.keyCode + " inside the input field");
}
document.getElementById('k').addEventListener('keydown', myFunction);
</script>
</body>
</html>