About Me

I have decades of experience is software development using .Net Technologies, PHP and wordpress. I love coding and discovering new tech.

Tag: Javascript

Javascript

Understanding let and var in JavaScript: A Guide to Modern Variable Declaration

Posted on April 8, 2024  - By Kaustav Halder - 0 Comments

In the ever-evolving world of JavaScript, how we declare variables has undergone a significant shift. The traditional var keyword has been joined by the more refined let (and its companion const). Understanding the distinctions between these keywords is crucial for...

Javascript, Wordpress

Fix WordPress Contact Form 7 on Elementor Popup

Posted on June 16, 2023  - By Kaustav Halder - 0 Comments

Elementor is a popular editor solution for Workpress. But one difficulty that I have faced is for some reason, Contact Form 7 Ajax does not work on Elementor Popups. Below is the fix for this. <script type=”text/javascript”> $(document).on( ‘elementor/popup/show’, function()...

Coding, Javascript

Saving data to browser local storage using javascript

Posted on September 14, 2022  - By Kaustav Halder - 0 Comments

How to save data on browser local storage for your HTML Website? Overview As website developers, every now and then we come across instances when we need to store some information and want it to persist through out the site....