Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY CYBERSECURITY DATA SCIENCE
     ❯   

HTML onkeypress Attribute


Definition and Usage

The onkeypress attribute fires when the user presses a key (on the keyboard).

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

  1. onkeydown
  2. onkeypress
  3. onkeyup

Note: The onkeypress event is not fired for all keys (e.g. ALT, CTRL, SHIFT, ESC) in all browsers. To detect only whether the user has pressed a key, use onkeydown instead, because it works for all keys.


Applies to

The onkeypress attribute is part of the Event Attributes, and can be used on any HTML elements.

Elements Event
All HTML elements onkeypress

Example

Input Example

Execute a JavaScript when a user presses a key:

<input type="text" onkeypress="displayResult()">
Try it Yourself »

Browser Support

Event Attribute
onkeypress Yes Yes Yes Yes Yes