For now I have only been able to do this code
var time = 1;
var myInterval = setInterval(funtion(){
time += 1;
},3600000)
});
I need a div, each time the number is increased after one hour,
<div id="time">1</div>
The problem is also that this number is saved in cookies, or in a small sql, something, so that no matter who reload the page, follow from the number left.
Thank you very much!