lemonldap-ng/lemonldap-ng-portal/site/htdocs/static/common/js/confirm.js

22 lines
364 B
JavaScript
Raw Normal View History

/* Timer for confirmation page */
var i = 5;
function go() {
2016-01-21 12:36:23 +01:00
$("#form").submit();
}
function timer() {
2016-01-21 12:36:23 +01:00
var h = $('#timer').html();
if (i > 0) {
i--;
}
h = h.replace(/\d+/, i);
$('#timer').html(h);
window.setTimeout('timer()', 1000);
}
$(document).ready(function() {
2016-01-21 12:36:23 +01:00
window.setTimeout('go()', 5000);
window.setTimeout('timer()', 1000);
});