D
D
damir_tok2022-02-23 11:42:25
HTML
damir_tok, 2022-02-23 11:42:25

How to make a timer that starts from the moment you enter the site?

I can make a timer that will start an hour from the moment you enter the site.
But here's how to make it restart again after one hour?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
T
thatmaniscool, 2022-02-23
@thatmaniscool

$(document).ready(function(){
    setTimeout(function(){
        window.location.reload(true);
    }, 60 * 60 * 1000);
});

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question