Using setTimeout() it is possible to launch a function at a specified time:
setTimeout()
setTimeout(function, 60000);
But what if I would l
use the
setInterval(function, 60000);
EDIT : (In case if you want to stop the clock after it is started)
Script section
and HTML Code
Stop