Intro to DOM Events
Events - Responding to user inputs and actions
Types of events:(some of the many)
- clicks, drags, drops, hovers,scrolls, form submissions, key press, focus/blur
- mousewheel, double click, copying, pasting, audio start, screen resize, printing etc.
Note: All events follow a similar pattern
Pattern:
The thing | Event type | Code to run |
---|---|---|
button | click | change the color |
input | hits return | get the search results |
image | mouseover | display img caption |
- for more info visit MDN Event reference
2 ways not to add events
Lets explore 2 different syntaxes which we should not use.
- all events start with
on
word. onEventName = doSomething
- First type actually involves inline html scripting, which is not recommended. It just clutters the markup.
|
|
- We first select an element in Javascript and then do inline html scripting
|
|
|
|
- if you want to have multiple events to a single element use
addEventListener
addEventListener
Specify the event type and a callback to run
|
|
addEventListener() is great, because it is just one method and it will attach to any type of event listener you want(click, double click, mouseover etc…)
- Note: if you see
button.onclick
property, it is not attached to anything. It returns null as output
important: Dont use arrow functions as call backs, because sometimes we want to access
this
inside the function and arrow functions doesnt do well withthis
Events on Multiple Elements
This is the important topic of event handling. We know how to add multiple events to a single element. how about multiple elements having a single event? How do we take every button on page and add a click event?
- select a group of items u want to add events to
- loop over them and add eventlistener to each
Note: this
refers to individual object onto which we are listening over when adding multiple events
|
|
|
|
Important : So when the function pickAColor
is called, ie., when we click on a box, we are never executing pickAColor
ourselves, its being called for us. An Event object is passed to it. Event object is automatically called every time we are not capturing it
Event Object
Contains information about a particular event
|
|
|
|
- KeyboardEvent - Conatins info about the key we pressed and othe useful info about keys
Key Events
There are atleast 3 types of keyevents.
keyup
keydown
keypress
keydown
A Key has been pressed.
When u hold or press any key it is considered as keydown event.
Note: keydown runs for any potential keys whether they actually change the input or not
All key presses are considered as keydown events.
- eg: alt/option, cmd, ctrl, caps, all alphabets, space, shift, tab etc.
1
<input type="text" id="username" placeholder="username" type="text" />
1 2 3 4 5
const username = document.querySelector("#username"); //we would want event object, because it contain info about which key is pressed username.addEventListener("keydown", function (e) { console.log("KEY DOWN"); });
- eg: alt/option, cmd, ctrl, caps, all alphabets, space, shift, tab etc.
keyup
A key has been released.
For all keys, first a keydown event is fired followed by a keyup.
- Note: keyup only occurs when u release a key
|
|
keypress
A key that normally produces a character value has been pressed. If the key is not a modifier key, the keypress event is sent
Caution: This event is obsolete and differs from browser to browser, better not to use it much
When you type a key K in the input. The order of key sequenes would be Keydown, keypress, keyup
When you press something like shift we only get keydown and keyup
Capital letter -> Shift + Letter -> KeyDown(2) , keypress, keyup(2) -> keydown and keyup for both shift and letter
Note: keypress only works when we have changing input. like alphabets, doesnt work with arrows, caps, shift, tab, cmd etc. But when you hit return, it is considered as a keypress
For more on events WEBApi - MDN
Example
Lets make a todo list
|
|
|
|
FormEvents & preventDefault
When we press submit, we get navigated to other page or the page gets refreshed if we dont specify any url in action.Lets say we want to stop the form from getting refreshed when we submit. Capture the submit event and stop it from its default behaviour.
Lets take this html snippet
|
|
preventDefault
Default behaviour is prevented
|
|
Now this leaves us free to now extract data from the submit event. If we wanted all data at once and send it to an api using AJAX or using a client side request, we can do that. We have flexibility to do something with the data and we can still capture the submit event. What’s nice about doing this way as opposed to capturing each input as it changes every single time is we dont need to attach a bunch of event listeners for every input, by adding a submit event listener there’s just one event we are waiting for, we tell it not to behave, normally it behaves and then we can extract our data in that function.
|
|
We are accessing data from the form. After accessing these values , we can generally send form data to DB or append something to page using form data. We can put preventDefault() at the top of the function, it still works the same
input and change Events
input
This event is triggered whenever an input changes .We can actually listen to all 3 above inputs(textbox, checkbox and select) at once using a single event type.
Our goal is to create a datastructure which automatically updates whenever a user enters value in input, instead of waitiing for user to submit(like from the above section)
|
|
Storing value to an object as soon as user changes the input. These events trigger before user clicks submit.
|
|
Refactor the above code.
add a name
attribute to each html input
|
|
|
|
- We can add multiple events under single event listener as long as we have
name
attribute.
change
If we change the above event type to change
it will still behave the same except for the textbox. Textbox input change wont trigger until we lose focus over it or press return key after entering complete data or focus it, unlike input where it triggers event for every single key typed(every single letter changed in text box).
|
|
This type of pattern (using name attribute) is pretty common especially if we get to something like react and some of the other frameworks or libraries out there. We use name of an input as a key to store the value from that input under, to create a nice object that contains all of our form data at once.
Hope you learnt something, until next time 👋, happy learning 🎉 💻
If you found this helpful, please give a shoutout to @gsavitha_ and share this article to help others. For more articles like this, subscribe to my Newsletter and get the latest updates straight to your inbox.