JavaScript KeyboardEvent which Property

You are Here:

JavaScript KeyboardEvent which Property

The event.which property returns the numeric keyCode of the key pressed, or the character code (charCode) for an alphanumeric key pressed.

Warning: The event.which property is deprecated and is no longer recommended.

Note: This property is read-only.

Example

HTML Online Editor
<!DOCTYPE html> <html> <body> <p>Press a key on the keyboard in the input field</p> <input type="text" onkeydown="myFunction(event)"> <p>The pressed key was: <span id="point"></span></p> <script> function myFunction(event){ document.getElementById("point").innerHTML = event.which; } </script> </body> </html>

Syntax

event.which

Return Values

ValueExplanation
NumberReturns a number representing either a Unicode character code or the Unicode key code.

Reminder

Hi Developers, we almost covered 97% of JavaScript Tutorials with examples for quick and easy learning.

We are working to cover every Single Concept in JavaScript.

Please do google search for:

Join Our Channel

Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.

This channel is primarily useful for Full Stack Web Developer.

Share this Page

Meet the Author