MotorCity
Structural
- Dec 29, 2003
- 1,787
Is there any way to determine the date that a web page was last revised? I tried contacting the web page owner without success. I want to verify if the information provided is current. Any suggestions?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<script language="Javascript">
<!--
var lastmod=new Date(document.lastModified);
document.write("<i>Last Modified: " + lastmod.toGMTString().slice(4,16) + "</i>");
//-->
</script>
<html>
<head><title>From Eng-Tips</title></head>
<body>
The stuff before<br>
<script language="Javascript">
<!--
var lastmod=new Date(document.lastModified);
document.write("<i>Last Modified: " + lastmod.toGMTString().slice(4,16) + "</i><br>");
//-->
</script>
The stuff after<br>
</body>
</html>