JavaScript Key Code 225

225

Key Code Information

event.key

AltGraph
The value of the key pressed. Accounts for modifiers keys that return CAPS and alternate chars.

event.location

Right-side modifier keys
Some keys exist more than once on your keyboard. This provides the location of the key pressed. Try it with both shifts.

event.code

AltRight
The physical key on the keyboard. Doesn't care if you are holding a modifier like Shift.

event.which

225
event.which and event.keyCode are deprecated in modern browsers. Use .key or .code instead.

Description

altgr
This is the description we have created. Think it can be improved? PR us on GitHub

Meta Keys

^

Event Dump

{
 "key": "AltGraph",
 "keyCode": 225,
 "which": 225,
 "code": "AltRight",
 "location": 2,
 "altKey": true,
 "ctrlKey": false,
 "metaKey": false,
 "shiftKey": false,
 "description": "altgr",
 "unicode": "⎇ or ⌥",
 "path": "/alt-graph"
}

Unicode

⎇ or ⌥

History