I have a little script that lets me show the TIME (Live) in a div…
See it here in the JS Fiddle:
But I would like to have only the DATE shown, like 17/02/2015 …
Can I just change it to:
Heute = new Date();
day = Heute.getDay();
month = Heute.getMoth();
year = Heute.getYear();
… Is getDay(); et cetera valid JS syntax?
Thank you for any help!