J Query for UI Developer
Pages
Home
Examples
December
site maps
countdown
function countdown(count, container) {
var $container = $(container);
(function step() {
$container.html(count);
if (count-- > 0) {
setTimeout(step, 1000);
}
})();
}
countdown(20, '#timer');
View Domo
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment