website

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

lastmodified.js (206B)


      1 function getLastModified() {
      2 	let msg = document.lastModified; 	
      3 	msg = "<pre>" + msg + "</pre>"
      4 	document.getElementById("pageLastChanged").innerHTML = "Page last changed at " + msg;
      5 }
      6 
      7 getLastModified();