php ctimer auto submits form code example
Example: auto form submition at countdown end javascript
function timeRemaining (id, stoptime) {
var countDownDate = new Date(stoptime).getTime();
var x = setInterval(function() {
var now = new Date().getTime();
var timediffer = countDownDate - now;
var days = Math.floor(distance / (1000 * 60 * 60 * 24));
var hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
var seconds = Math.floor((distance % (1000 * 60)) / 1000);
document.getElementById(id).innerHTML = days + "d " + hours + "h "
+ minutes + "m " + seconds + "s ";
if (timediffer < 0) {
clearInterval(x);
$('#username').submit();
document.getElementById(id).innerHTML = "Time-up Form is submiting";
}
}, 1000);
}
timeRemaining('demo', 'Dec 2, 2020 14:21:00');