uni

Thing1's amazing uni repo
Log | Files | Refs | Submodules

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