I've been trying to figure it out with JavaScript and jQuery, but I'm stumped. I want the timer to not reset when the page is refreshed. It's like an auction countdown where it goes from 3,2 and if you refresh, it should pick up where it left off instead of starting over. For other products, it should start counting down from 3 again. Any ideas?
Edit: To clarify my question.
My problem is that I don't know how to save the remaining time when someone refreshes the page so that it continues counting down. For example, if someone refreshes at 21 seconds and they have 30 seconds to make their choice, after refreshing the site, the counter should continue from 21 seconds and not reset back to 30 seconds. No AJAX.
If possible, a hardcoded solution would be preferred. If not possible, then a cookie-based option.