10 lines
488 B
JavaScript
10 lines
488 B
JavaScript
window.onload = function () {
|
|
setTimeout(function () {
|
|
/* document.getElementById('message').innerHTML =
|
|
'The page has finished loading! After 2 second'; */
|
|
document.getElementById("updateDate").setAttribute("id", "updateDateV");
|
|
}, 2000);
|
|
// TODO Add timer for glitch
|
|
// NOTE Track mouse mouvement and show after a percentage of ?
|
|
// NOTE une page sur deux, ...
|
|
}; |