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