by S M Zahed Kamal | Dec 31, 2024 | How To, Javascript
To open the side panel by default in google Chrome extension, you can use the Side Panel API introduced in Chrome extensions. You’ll need to configure your extension to register the sidebar (side panel) and ensure it’s enabled automatically when the...
by S M Zahed Kamal | Mar 25, 2022 | Javascript
JavaScript AJAX (Asynchronous JavaScript and XML) is a technique that gives the ability to send and receive data asynchronously from a web server. AJAX allows you to create rich, responsive user interfaces. It makes it easy to update data on the page without having to...
by S M Zahed Kamal | Mar 7, 2022 | Bootstrap, CSS, Javascript
By default, Bootstrap carousel has no way to add animations to carousel elements. Here I’m going to show you how you can do that. Let’s create the carousel HTML. I’ve copied the HTML from the Bootstrap’s documentation from here. <div...
by S M Zahed Kamal | Dec 18, 2021 | Javascript
To create autocomplete feature for input field(s), HTML’s datalist tag can be the easiest solution. But it has limited styling and also some browser support issues. So, let’s create our own stylish autocomplete using vanilla JavaScript and Bootstrap for...
by S M Zahed Kamal | Dec 6, 2021 | Javascript
Gulp is a toolkit to automate & enhance our workflow. Most of the time, I use gulp for my SASS projects. In this article, I’ll show you how to use gulp to automate SASS to CSS compilation. First, let’s create a folder named sass and then initialize npm...
by S M Zahed Kamal | Dec 6, 2021 | Javascript, Node.js
When you install a node.js package, you get the latest version. But, what if you need to get the latest version of the packages in an old project? Let me show you how I do it Imagine, Below is what we’ve in the package.json of a project – {...