<script type="text/javascript">
var tid;
var cnt=50*60;
function init() {
    tid=setInterval("counter()",1000);
}
function counter() {
    document.all.counter.innerText=padZero(parseInt(cnt/60))+":"+padZero(parseInt(cnt%60));
    cnt--;
    if (cnt<0) {
        clearInterval(tid);
        self.location="http://daum.net";
    }
}
function padZero(n) {
    return n>9?n:"0"+n;
}
</script>
...
<body onload="init()">
    * 남은시간 - <span id="counter"></span>
</body>

'HTML & Script' 카테고리의 다른 글

[html5]The Root Element  (0) 2011.06.02
오른쪽 마우스 및 키보드 사용 금지  (0) 2011.05.25
Popup Windows: Full Screen  (0) 2011.05.25
Key Code Reference Table  (0) 2011.05.24
Google Libraries API - Developer's Guide  (0) 2011.05.13

+ Recent posts