Please note, this is a STATIC archive of website www.w3schools.com from 05 May 2020, cach3.com does not collect or store any user information, there is no "phishing" involved.
THE WORLD'S LARGEST WEB DEVELOPER SITE

HTML onkeydown Event Attribute

❮ HTML Event Attributes

Example

Execute a JavaScript when a user is pressing a key:

<input type="text" onkeydown="myFunction()">
Try it Yourself »

More "Try it Yourself" examples below.


Definition and Usage

The onkeydown attribute fires when the user is pressing a key (on the keyboard).

Tip: The order of events related to the onkeydown event:

  1. onkeydown
  2. onkeypress
  3. onkeyup

Browser Support

Event Attribute
onkeydown Yes Yes Yes Yes Yes

Syntax

<element onkeydown="script">

Attribute Values

Value Description
script The script to be run on onkeydown

Technical Details

Supported HTML tags: All HTML elements, EXCEPT: <base>, <bdo>, <br>, <head>, <html>, <iframe>, <meta>, <param>, <script>, <style>, and <title>

More Examples

Example

Using "onkeydown" together with the "onkeyup" attribute:

<input type="text" onkeydown="keydownFunction()" onkeyup="keyupFunction()">
Try it Yourself »

Related Pages

HTML DOM reference: onkeydown event


❮ HTML Event Attributes