files/en-us/web/api/keyboard/lock/index.md
{{APIRef("Keyboard API")}}{{SeeCompatTable}}{{securecontext_header}}
The lock() method of the
{{domxref("Keyboard")}} interface returns a {{jsxref('Promise')}} that resolves after enabling the
capture of key presses for any or all of the keys on the physical keyboard. This method
can only capture keys that are granted access by the underlying operating
system.
If lock() is called multiple times then only the key codes specified in the most recent call will be locked.
Any keys locked by a previous call to lock() are unlocked.
lock()
lock(keyCodes)
keyCodes {{optional_inline}}
A {{jsxref('Promise')}} that resolves with {{jsxref('undefined')}} when the lock was successful.
AbortError {{domxref("DOMException")}}
lock() is made before the current one has finished.InvalidAccessError {{domxref("DOMException")}}
keyCodes is not a valid key code attribute value.InvalidStateError {{domxref("DOMException")}}
lock() is not called in an active top-level browsing context.Transient user activation is required. The user has to interact with the page or a UI element in order for this feature to work.
The following example captures all key presses.
navigator.keyboard.lock();
The following example captures the <kbd>W</kbd>, <kbd>A</kbd>, <kbd>S</kbd>, and <kbd>D</kbd> keys. It captures these keys
regardless of which modifiers are used with the key press. Assuming a standard US QWERTY
layout, registering "KeyW" ensures that <kbd>W</kbd>, <kbd>Shift</kbd>+<kbd>W</kbd>, <kbd>Control</kbd>+<kbd>W</kbd>,
<kbd>Control</kbd>+<kbd>Shift</kbd>+<kbd>W</kbd>, and all other key modifier combinations with <kbd>W</kbd> are sent to the app.
The same applies to for "KeyA", "KeyS" and
"KeyD".
navigator.keyboard.lock(["KeyW", "KeyA", "KeyS", "KeyD"]);
{{Specifications}}
{{Compat}}