<script type="text/javascript">
function countDown(){
var timeA = new Date(); // วันเวลาปัจจุบัน
var timeB = new Date("09-21-2012 00:00:00"); // วันเวลาสิ้นสุด รูปแบบ เดือน/วัน/ปี ชั่วโมง:นาที:วินาที
// var timeB = new Date(2012,1,24,0,0,1,0);
var timeDifference = timeB.getTime()-timeA.getTime();
if(timeDifference>=0){
timeDifference=timeDifference/1000;
timeDifference=Math.floor(timeDifference);
var wan=Math.floor(timeDifference/86400);
var l_wan=timeDifference%86400;
var hour=Math.floor(l_wan/3600);
var l_hour=l_wan%3600;
var minute=Math.floor(l_hour/60);
var second=l_hour%60;
var showPart=document.getElementById('showRemain');
showPart.innerHTML="เหลือเวลา "+wan+" วัน "+hour+" ชั่วโมง "
+minute+" นาที "+second+" วินาที";
if(wan==0 && hour==0 && minute==0 && second==0){
clearInterval(iCountDown);
// เพิ่มฟังก์ชันอื่นๆ ตามต้องการ
window.location='examples.html';
}
}
}
// การเรียกใช้
var iCountDown=setInterval("countDown()",1000);
</script>