Quantcast
Channel: Active questions tagged html - Stack Overflow
Viewing all articles
Browse latest Browse all 67497

How to submit form after countdown

$
0
0

I'm kind of stuck in my project i have been able to get a function for a countdown using JavaScript , the problem i'm facing now is i don't know where to set a function that's say's once it's 0:00 submit the form

here is the html:

<form name = 'countdown'>
      </form>

here is the Javascript

    (function($) {
$.tinyTimer = function(options) {
    var tick, tt = this, elem = (tt.options = options).element, ref = new Date(options.from || options.to).getTime(), dir = !!options.from || -1, M = Math, doNothing = function() {};
    tt.interval = setInterval(tick = function() {
        if (!tt.paused) {
            var sec = M.max(M.round((Date.now() - ref) * dir / 1e3), 0), val = {
                S: sec,
                s: sec % 60,
                M: M.floor(sec /= 60),
                H: M.floor(sec /= 60),
                D: M.floor(sec /= 24)
            };
            val.m = val.M % 60, val.h = val.H % 24, val.d = val.D, val.text = (options.format || "%-H{:}%0m:%0s").replace(/%(-?)(0?)([dhms])(\s*)(?:\{(.+?)\})?/gi, options.replacer || function(match, omit, zero, part, space, forms) {
                var v = val[part];
                return (forms = (forms || "").split("|"))[2] = forms[2] || (forms[1] = forms[1] || forms[0]), 
                !v && omit ? "" : (v > 9 ? "" : zero) + v + space + forms[+(1 != v) + (1 != v && (2 > v % 10 || v % 10 > 4) || v > 10 && 20 > v)];
            }), elem ? $(elem).html(val.text) : elem = tt, (options.onTick || doNothing).call(elem, tt.val = val), 
            0 > dir && !sec && (clearInterval(tt.interval), (options.onEnd || doNothing).call(elem, val));
        }
    }, 1e3), tick(), tt.pause = tt.stop = function() {
        tt.paused = Date.now();
    }, tt.resume = function() {
        ref -= (tt.paused - Date.now()) * dir, tt.paused = 0;
    }, tt.start = function() {
        tt.paused = 0;
    };
}, $.fn.tinyTimer = function(options) {
    return this.each(function() {
        $(this).data("tinyTimer", new $.tinyTimer($.extend(options, {
            element: $(this)
        })));
    });
};
})(jQuery);

var d = new Date();
d.setMinutes(d.getMinutes() + 5);
$('#timer').tinyTimer({ to: d });

Please any help will be appreciated .Thanks


Viewing all articles
Browse latest Browse all 67497

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>