JavaScript Clock
by katalin_2003
HTML
<div id="div_horloge"></div>
JavaScript
function horloge(el) {
if(typeof el=="string") { el = document.getElementById(el); }
function actualiser() {
var date = new Date();
var str = date.getHours();
str += ':'+(date.getMinutes()<10?'0':'')+date.getMinutes();
str += ':'+(date.getSeconds()<10?'0':'')+date.getSeconds();
el.innerHTML = str;
}
actualiser();
setInterval(actualiser,1000);
}
window.onload = function() {
horloge('div_horloge');
console.log('MATA');
};