Deprecated: This feature is no longer recommended. Though some browsers might still support it, it may have already been removed from the relevant web standards, may be in the process of being dropped, or may only be kept for compatibility purposes. Avoid using it, and update existing code if possible; see the compatibility table at the bottom of this page to guide your decision. Be aware that this feature may cease to work at any time.
The keypress event is fired when a letter, number, punctuation, or symbol key is pressed, or else when the Enter key is pressed — including when the Enter key is pressed in combination with the Shift key or Ctrl key. Otherwise, when a modifier key such as the Alt, Shift, Ctrl, Meta, Esc, or Option key is pressed in isolation, the keypress event is not fired.
Warning: Since this event has been deprecated, you should use beforeinput or keydown instead.
The event bubbles. It can reach Document and Window.
Use the event name in methods like addEventListener(), or set an event handler property.
addEventListener("keypress", (event) => { })
onkeypress = (event) => { }
A KeyboardEvent. Inherits from UIEvent and Event.
This interface also inherits properties of its parents, UIEvent and Event.
KeyboardEvent.altKey Read only
Returns a boolean value that is true if the Alt (Option or ⌥ on macOS) key was active when the key event was generated.
KeyboardEvent.code Read only
Returns a string with the code value of the physical key represented by the event.
KeyboardEvent.ctrlKey Read only
Returns a boolean value that is true if the Ctrl key was active when the key event was generated.
KeyboardEvent.isComposing Read only
Returns a boolean value that is true if the event is fired between after compositionstart and before compositionend.
KeyboardEvent.key Read only
Returns a string representing the key value of the key represented by the event.
KeyboardEvent.location Read only
Returns a number representing the location of the key on the keyboard or other input device. A list of the constants identifying the locations is shown in Keyboard locations.
KeyboardEvent.metaKey Read only
Returns a boolean value that is true if the Meta key (on Mac keyboards, the ⌘ Command key; on Windows keyboards, the Windows key (⊞)) was active when the key event was generated.
KeyboardEvent.repeat Read only
Returns a boolean value that is true if the key is being held down such that it is automatically repeating.
KeyboardEvent.shiftKey Read only
Returns a boolean value that is true if the Shift key was active when the key event was generated.
This example logs the KeyboardEvent.code value whenever you press a key after focussing the <input> element.
To see which keys cause a keypress event to fire, and which keys don't, try pressing the following:
<div> <label for="sample">Focus the input and type something:</label> <input type="text" name="text" id="sample" /> </div> <p id="log"></p>
const log = document.getElementById("log");
const input = document.querySelector("input");
input.addEventListener("keypress", logKey);
function logKey(e) {
log.textContent += ` ${e.code}`;
}
input.onkeypress = logKey;
| Specification |
|---|
| UI Events> # event-type-keypress> |
| HTML> # handler-onkeypress> |
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | |
keypress_event |
1Chrome does not fire thekeypress event for known keyboard shortcuts. Which keyboard shortcuts are known depends on the user's system. Use the keydown event to implement keyboard shortcuts. |
12 | 6As of Firefox 65, thekeypress event is no longer fired for non-printable keys, except for the Enter key, and the Shift + Enter and Ctrl + Enter key combinations (these were kept for cross-browser compatibility purposes). |
≤12.1Opera does not fire thekeypress event for known keyboard shortcuts. Which keyboard shortcuts are known depends on the user's system. Use the keydown event to implement keyboard shortcuts. |
1.3 | 18Chrome Android does not fire thekeypress event for known keyboard shortcuts. Which keyboard shortcuts are known depends on the user's system. Use the keydown event to implement keyboard shortcuts. |
6As of Firefox for Android 65, thekeypress event is no longer fired for non-printable keys, except for the Enter key, and the Shift + Enter and Ctrl + Enter key combinations (these were kept for cross-browser compatibility purposes). |
≤12.1Opera does not fire thekeypress event for known keyboard shortcuts. Which keyboard shortcuts are known depends on the user's system. Use the keydown event to implement keyboard shortcuts. |
1 | 1.0Samsung Internet does not fire thekeypress event for known keyboard shortcuts. Which keyboard shortcuts are known depends on the user's system. Use the keydown event to implement keyboard shortcuts. |
1Chrome does not fire thekeypress event for known keyboard shortcuts. Which keyboard shortcuts are known depends on the user's system. Use the keydown event to implement keyboard shortcuts. |
1 |
© 2005–2025 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/Element/keypress_event