jQuery-tinyTimer icon indicating copy to clipboard operation
jQuery-tinyTimer copied to clipboard

TinyTimer is a very simple jQuery plugin that lets you create a countdown (or countup) timer on a web page.

Results 8 jQuery-tinyTimer issues
Sort by recently updated
recently updated
newest added

I need the same timer on different places of the same page. In the example you initialize the plugin with ID selector. Is it correct to initilize it instead with...

Hi, First of all, great plugin! :) I'm trying to use it with a pause/resume button, however I'm getting the same behavior with start() and resume(): they both resume with...

hi i try to stop the countup on 5.30 minutes $('#timer2').tinyTimer({ from: Date.now(), format: '%0H:%0m:%0s', onTick: function (val) { if (val.m > 5 && val.s > 30) { /\* stop?*/...

This will make the timer count from the passed newDate value.

#### Hey, maintainer(s) of odyniec/jQuery-tinyTimer! We at [VersionEye](https://www.versioneye.com/signup?promo_code=BOWER) are working hard to keep up the quality of the bower's registry. We just finished our initial analysis of the quality of...

**reset**: should start the timer from the start state. looking this for a count up timer basically. **remove**: should detach the tiny timer from the span

Hello, In your script , Date.now() do not work in IE < IE9. Little workaround : put Date.now = Date.now || function() { return +new Date; }; at the top...

Hello, Thanks for this very usefull-tiny-efficient plugin ! Just one question : i have to get the current value of the timer outside the function in order to calculate scoring,...