Monday, May 16, 2022
Modern browsers allow you to define native dragging & dropping functionality with a graceful degradation for older/ancient browsers, such as…
Monday, May 16, 2022
I recently developed a simple tab strip using only HTML, CSS, and vanilla JavaScript. The script does not require any…
Monday, May 16, 2022
This is a reliable way of checking for DOM ready. The first version uses a procedural function, while the second…
Monday, June 13, 2022
DragonflyJS is a tiny vanilla JavaScript library that enables sorting (dragging and dropping) functionality with zero dependencies.
Monday, May 16, 2022
If you use jQuery for a handful of effects/animations, here’s a quick JavaScript replacement for jQuery slideToggle(). With small changes,…
Monday, May 16, 2022
The script below will check for a localStorage variable, which is the explicit user consent. If the variable exists, the…
Monday, June 13, 2022
RoarJS is a wonderful, responsive, customisable, accessible (WAI-ARIA), zero-dependency, vanilla JavaScript alert/confirm replacement. RoarJS automatically centers itself on the page…
Tuesday, May 17, 2022
This post is an assortment of JavaScript snippets, experiments and code samples created for various projects. They are pretty small…
Monday, May 16, 2022
Creating an i18n system in JavaScript can be tricky. The most popular option is to use global variables, but it…
Friday, June 3, 2022
Updated on May 4, 2021 to add a second solution, based on JSON data.Updated on August 30, 2019 to use…
Monday, May 16, 2022
For years, developers have needed a method for adding their own metadata to HTML elements, but no standardized technique existed.…
Tuesday, May 10, 2022
Dealing with the DOM can be a very tedious process. Traversing the DOM can quickly clutter your code with nested loops. For…