Thursday, September 9th 2010, 10:24am UTC+2

You are not logged in.

  • Login
  • Register

vanilla-wings

Puzzleteil

Posts: 476

Location: Waldmohr

Occupation: Schülerin

1

Sunday, September 14th 2008, 2:41pm

Countdown

Source code

1
2
3
4
5
6
7
8
9
10
11
12
13
14
<script language="JavaScript">
<!--
var targetday = new Date(2018,12,24);
var today = new Date();
var todaytime = today.getTime()/1000/60/60/24;
var targetdaytime = targetday.getTime()/1000/60/60/24-30;
var days = Math.floor(targetdaytime - todaytime) + ' ';
counting = days.split("");
document.write("Es sind noch ");
for (i=0;i<counting.length - 0;i++)
document.write(""+ counting[i] + "");
document.write(" Tage bis zum Weihnachtsfest im Jahr 2018.");
// -->
</script>


Bei Problemen einfach melden =)

Rate this thread