5 JavaScript Events You NEED To Know 🌏

dcodeyt

Dom (dcode)

Posted on August 17, 2022

5 JavaScript Events You NEED To Know 🌏

Everybody has their favourite JavaScript event. No? Just me? Well, either way, here are 5 more to add to your collection πŸ‘‡

1. offline and online

These events let you know when your user's network connection drops out or comes back online, respectively. Especially helpful for good UX! πŸ–ΌοΈ

2. hashchange

This one is perfect for building single page applications, or updating page content without refresh. #️⃣

3. transitionend

You can use this event to react to when a CSS transition finishes - great for building beautiful user interfaces πŸ“‘

4. load

Maybe you want to do something after an image or page is loaded, or you're just curious how long it takes. Either way, this event will fire off when something loads! πŸ”ƒ

5. scroll

One of my personal favourites, the scroll event lets you know when the user scrolls down the page. You can do plenty of interesting things with this, but keep handlers for this event light, for performance reasons 🚨🏎️

JavaScript DOM Crash Course

You can find a complete course on the JavaScript DOM which goes over some of the topics covered in this post at the link below πŸ‘‡
https://www.udemy.com/course/the-ultimate-javascript-dom-crash-course/?referralCode=DC343E5C8ED163F337E1
Course Thumbnail

Happy coding 🀭

πŸ’– πŸ’ͺ πŸ™… 🚩
dcodeyt
Dom (dcode)

Posted on August 17, 2022

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related