Public Access
5
0
Files
web01/www/js/script.js
2025-11-24 21:12:03 -05:00

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);
};