Исправил:
<!DOCTYPE html>
<html>
<head>
<script>
function init()
{
sec = 0;
setInterval(tick, 10);
}
function tick()
{
sec++;
document.getElementById("timer").
childNodes[0].nodeValue = sec;
}
function check() {
if (document.getElementById('stop').checked) {
clearInterval(timer);
}
}
</script>
</head>
<body onload="init()">
<input type="checkbox" id="stop"/><label for="stop" onclick="check()">Включить</label>
<div id="timer"></div>
</body>
</html>
Не работает с setInterval, даже если поставить тот же alert, всё "фурычит". В чём ошибка?