Probleem 1: Countdown stopt niet, hij telt door tot onder 0
Probleem 2: Formulier word niet verzonden
<script type="text/javascript">
function CountDown() {
var duration = Math.round(document.getElementById('display').innerHTML);
var form = document.getElementById("myForm");
if (isNaN(duration)) {
return;
} else {
duration = duration + 1;
}
var InterVal = setInterval(nextSecond, 1000);
function nextSecond(){
duration--;
if (duration < 0){
clearInterval(nextSecond);
document.getElementById('display').innerHTML = duration;
form.submit();
} else {
document.getElementById('display').innerHTML = duration;
}
}
}
CountDown();
</script>