5 JavaScript Events You NEED To Know π
Dom (dcode)
Posted on August 17, 2022
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
Happy coding π€
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
November 24, 2024
November 22, 2024