mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-02 08:57:19 -04:00
20 lines
324 B
HTML
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>
|