skip to main
|
skip to sidebar
Ch 7
Your Browser Do not Support Iframe
" width="600" height="430" id="myfr" scrolling="no" frameborder="0" marginheight="0" marginwidth="0">Your Browser Do not Support Iframe
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 () { } });