
- HTML Tutorial
- HTML - Home
- HTML - Overview
- HTML - Basic Tags
- HTML - Elements
- HTML - Attributes
- HTML - Formatting
- HTML - Phrase Tags
- HTML - Meta Tags
- HTML - Comments
- HTML - Images
- HTML - Tables
- HTML - Lists
- HTML - Text Links
- HTML - Image Links
- HTML - Email Links
- HTML - Frames
- HTML - Iframes
- HTML - Blocks
- HTML - Backgrounds
- HTML - Colors
- HTML - Fonts
- HTML - Forms
- HTML - Embed Multimedia
- HTML - Marquees
- HTML - Header
- HTML - Style Sheet
- HTML - Javascript
- HTML - Layouts
- HTML References
- HTML - Tags Reference
- HTML - Attributes Reference
- HTML - Events Reference
- HTML - Fonts Reference
- HTML - ASCII Codes
- ASCII Table Lookup
- HTML - Color Names
- HTML - Entities
- HTML - Fonts Ref
- HTML - Events Ref
- MIME Media Types
- HTML - URL Encoding
- Language ISO Codes
- HTML - Character Encodings
- HTML - Deprecated Tags
Execute a script when a user is pressing a key in HTML?
Use the onkeydown attribute. The onkeydown attribute triggers when the user is pressing a key.
Example
You can try to run the following code to execute a script on pressing a key −
<!DOCTYPE html> <html> <body> <p>Press a key inside the textbox.</p> <input type = "text" onkeydown = "display()"> <script> function display() { alert("You pressed a key!"); } </script> </body> </html>
- Related Articles
- Execute a script when a user releases a key in HTML?
- Execute a script when a user navigates to a page in HTML?
- Execute a script when the element gets user input in HTML?
- Execute a script when a user navigates away from a page in HTML?
- Execute a script when the user writes something in a search field in HTML?
- Execute a script when the user opens or closes the element in HTML?
- Execute a script when the user pastes some content in an element in HTML?
- Execute a script when the media is paused either by the user or programmatically in HTML?
- Execute a script when the file is unavailable in HTML?
- Execute a script when the element is invalid in HTML?
- Execute a script when media data is loaded in HTML?
- Execute a script when a page has unloaded in HTML?
- Execute a script when a Web Storage area is updated in HTML?
- Execute a script when an error occurs in HTML?
- Execute a script when the browser window is closed in HTML?

Advertisements