Skip to content
Advertisement

How do I display a modal only once per hour for each user?

I have a website that displays a model on index load. Currently it loads every single time you go to the index page. It gets very annoying to the users of the website. I was wondering if I can only display it once per hour per user? The website is located at wikiraces.com

JavaScript

Advertisement

Answer

We can store the last time the modal was opened in localStorage and everytime the user visits the site, we can check the difference between the time stored and the current time. If the time spend is greater than one hour, then show the modal.

JavaScript
User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement