| |
|
document.lastModified of a page |
WE can collect the last modified or created date of the current file by using document object lastModified property.
Here is the syntax
document.lastModified
The above command is case sensitive
Here is the complete code for you to try.
<html>
<head>
<title></title>
<script type="text/javascript">
document.write(document.lastModified);
</script>
</head>
<body>
</body>
</html>
| |
|
|
|