Enabling A Tag Click Event To Open A Page In A New Tab With Ctrl Or Command K...
When you intercept a click on an A tag using the onclick event and override the default behavior using , it's now up to you to define its new behavior. Let's say you want to load a locally cached version of the requested page. A problem arises when the user combines the ...
Rewriting Bootstrap's Button Components Using Tailwind CSS
In this article, we look at the conversion of Bootstrap 5 buttons to ...
Rewriting Bootstrap's Alert Components Using Tailwind CSS
In this article, we look at the conversion of the Bootstrap 5 Alerts component to ...
Automate Deployment To AWS S3 Using Github Actions
The first step is to setup an S3 bucket for your static site, I have a different article on how to do that . In other to enable deployment from GitHub to S3 you should also have the source co...
Customizing Laravel: Renaming The Queue Table From 'jobs' To Your Preferred N...
Laravel's queue system makes it possible to process tasks in the background. By default, Laravel uses a table named to store queued jobs. However, in some cases, you might want to...
Round Up A Number To X Decimal Places | Javascript
You can use the Number prototype method in Javascript to Round up a Number to 2 decimal places. ...