Last updated on March 10th, 2022 at 07:41 amSometimes when user click a submit button multiple times it became an issue at the backend. May be the server side processing the request is not having a logic to track duplicate submission or anything of that sort. How can we prevent this duplicate submit from happening […]
Tag: Jquery (Page 6 of 6)

Replace images with time intervals using jquery
Last updated on January 25th, 2023 at 11:20 amIn this tutorial we are going to see how to replace images with new ones in specific time intervals. For example: replacing image1.jpg with image2.jpg every 5 seconds. Using setInterval() we are triggering a call to swapImages() function every 5000 milliseconds. So, before proceeding, we need to define […]