DOM Event - Keyup

Devtool Chrome Event Listener

About

keyup is an event that occurs when the key of the keyboard goes up.

You have also keydown

Example

Which key has been up ?

parent.window.addEventListener('keyup', e => {
    console.log("The key ("+e.key+") has been up");
});
<h2>Just hit any key you want.</h2>





Discover More
Devtool Chrome Event Listener
DOM - Event Type (name)

An event is categorize by its type which is a property of the event object The type of an event is also known as the name of the event (Ref)...
Devtool Chrome Event Listener
DOM Event - Keydown

A Keydown is an input device event that tracks when a key goes down on the keyboard. keyup You can attach it to all element. This is also possible to create advanced accesskey (ie...
Devtool Chrome Event Listener
Event - Category

event type are categorized further in category. Form Event Focus Event Input Devices Event View Events Example non-normative. Category Event Type Form Event submit Focus Event focus,...
HTML - Keyboard Navigation (key event)

Navigation / Manipulation of an HTML document with the keys of a keyboard. The tab key is the default key that permits to move from a interactive element to another and therefore change the focus...



Share this page:
Follow us:
Task Runner