Are you struggling to place two or more divisions side by side in a web page? Then you should checkout CSS float property. In this article I will show you [ … ]
Use of CSS Media Query
Media Query is popular CSS feature introduced in CSS3. It is used to display different styles conditionally based on what device or media a web page is being displayed i.e. [ … ]
How to Display Related Posts From Same Category in the Sidebar in WordPress
Here is a simple working way to display related posts from same category in sidebar without plugin in WordPress. For each post you can display related posts (of same category) [ … ]
Different Ways to Define a Function in JavaScript
A function is piece of code or group of statements that performs a particular task. The code within a function gets executed only when it is referenced or called. For [ … ]
How to Check If a String Contains a Substring in JavaScript
In this article I will discuss how you can check if a string contains particular substring. 1. Prior JavaScript ES6, the conventional way to check if a string contains a [ … ]
What is IIFE in JavaScript?
An IIFE (Immediately Invoked Function Expression) pronounced as iify is a JavaScript function that runs as soon as it is defined. In other words, the function gets executed automatically as [ … ]
Uglifying JavaScript Files With Gulp 4 – Tutorial
Gulp is a JavaScript (JS) library to automate slow, time consuming repetitive workflows such as minifying or uglifying JS and CSS files, copying files to distribution directory and so on. [ … ]
How to Fix Too Many Redirects Issue in WordPress wp-admin
It may happen due to improper url configuration while migrating from http to https. Here is how you can fix this issue. 1. Update WordPress Address (URL) and Site Address [ … ]
Busting Browser Cache by CSS Versioning
If you are tired of pressing ‘ctrl+f5’ every time you update your site’s CSS (or JS) to see the changes, then here is a good idea to fool and force [ … ]