Categories
Wordpress

How to add Scripts on your WordPress site without using any plugin

If you are looking for how to add that google analytics script, google tag manager script or hot jar script to your WordPress website. Then you don’t need to add those plugins, because adding plugins is easy but you need to regularly update them. As hackers use plugins mostly if they are not maintained by […]

Categories
JavaScript React

Create Autocomplete Search Box with Debouncing

What is Debouncing? Debouncing is a technique to improve browser performance specially used to limit the number of API calls. For Example, you want to make an Autosearch functionality on your website. Whenever users start typing you will have to make an API call and return the result in a list view. Making API calls […]