1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-29 01:45:34 +00:00
elinks/test/ecmascript/onkeydown.html
2022-11-03 19:30:57 +01:00

20 lines
324 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 type="text" onkeydown="myFunction()">
<input type="submit">
</form>
<script>
function myFunction() {
alert("You pressed a key inside the input field");
}
</script>
</body>
</html>