skip to main
|
skip to sidebar
Ch 7
Your Browser Do not Support Iframe
Ad will Close in
Ad will Close in
function display( notifier, str ) { document.getElementById(notifier).innerHTML = str; } function toMinuteAndSecond( x ) { return x%60; } function setTimer( remain, actions ) { (function countdown() { display("countdown", toMinuteAndSecond(remain)); actions[remain] && actions[remain](); (remain -= 1) >= 0 && setTimeout(arguments.callee, 1000); })(); } setTimer(35, { 0: function () { } });