en.javascript.info/2-ui/1-document/07-modifying-document/10-clock-setinterval/source.view/index.html
Ilya Kantor 508969c13f up
2017-02-28 12:54:48 +03:00

12 lines
270 B
HTML

<!DOCTYPE HTML>
<html>
<body>
<!-- click on this button calls clockStart() -->
<input type="button" onclick="clockStart()" value="Start">
<!-- click on this button calls clockStop() -->
<input type="button" onclick="clockStop()" value="Stop">
</body>
</html>