7 lines
329 B
JavaScript
7 lines
329 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);
|
|
}; |