14-10-2011, 20:16
Kod:
<script type="text/javascript">
today = new Date();
BigDay = new Date("October 14, 2011");
msPerDay = 24 * 60 * 60 * 1000 ;
timeLeft = (today.getTime() - BigDay.getTime());
e_daysLeft = timeLeft / msPerDay;
daysLeft = Math.floor(e_daysLeft);
e_hrsLeft = (e_daysLeft - daysLeft)*24;
hrsLeft = Math.floor(e_hrsLeft);
minsLeft = Math.floor((e_hrsLeft - hrsLeft)*60);
document.write("There are only<BR> <H4>" + daysLeft + " days " + hrsLeft +" hours and " + minsLeft + " minutes left </H4> Until December 25th 2020<P>");
</script>