How to Create a DIV element using jQuery

Creating a div element in jQuery is pretty easy. There are two things you needs to do. Create the div element and then add the...

Create Responsive Navbar without Bootstrap

Creating a responsive navbar with bootstrap is super easy. You just have to copy the navbar element from their site, add it to your site,...

Shrink Sticky Navbar on Scroll Down – Bootstrap 4

Bootstrap navigation bar height is dependent on the height and padding of the following elements Brand name/logoLine height on any element inside the navbarPadding on the...

Fix – “Webpack is Not Recognized” Error in Windows

It is quite common to come across this error while using webpack on windows environment for the first time. It is a path related error...

Creating a Full Screen Overlay using Jquery and CSS

Recently i had to work in a project where this full screen overlay had to be shown with just a message in the middle of...

Remove an Element from an Array in Javascript

The simplest way to remove a particular element from an array in Javascript is to use the "splice()" method. First find the index of the element...