Revision: 34521
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at October 24, 2010 03:47 by mikael12
Initial Code
(function showTime() {
var d = new Date();
document.getElementById('time').innerHTML = d;
setTimeout(showTime, 1000);
})();
Initial URL
Initial Description
It will be executed onload
Initial Title
Do stuff every n msec
Initial Tags
Initial Language
JavaScript