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…
Tuesday, October 24, 2023
Server-side pagination is needed when you have to display hundreds of records. You may fetch results from a database using…
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…
Tuesday, May 10, 2022
Using image beacons is one of those popular techniques that you would probably know about without knowing its name. The technique helps…
Tuesday, May 10, 2022
I needed a random string for various purposes. For example, to provide a unique ID to HTML elements via JavaScript.…
Tuesday, May 10, 2022
Similar to my previous article on how to add/inject a CSS stylesheet using Vanilla JavaScript, this is how you load…
Tuesday, October 24, 2023
Generate an HTML list based on the contents of a JavaScript array. By modifying the makeList() function to accept parameters…
Tuesday, May 10, 2022
The function below will dynamically inject a CSS stylesheet in the document's using Vanilla JavaScript (no dependencies).
Tuesday, August 22, 2023
This script shows you how to create vanilla JavaScript tabs anywhere, physically linkable without any external JavaScript library. 305 bytes…