w3resource logo


Javascript Document Object - lastmodified

JavaScript Document Object : lastModified

<<PreviousNext>>

Description

The lastModified property specifies the date and time, the document was last modified.

Version

Implemented in JavaScript 1.0

Syntax

document.lastModified

Example of document Object : lastModified

In the following web document lastmodified property returns the date and time, the document was last modified:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
<title>JavaScript document Object - lastModified property example</title>
</head>
<body>
<h1 style="color: red">JavaScript document Object : lastModified property</h1>
<hr />
The current document last modified on : 
<script type="text/javascript" language="JavaScript">
//This is done to make the following JavaScript code compatible to XHTML. <![CDATA[
document.write(document.lastModified);
//]]>
</script>
</body>
</html>

View the example of document object lastModified in the browser

Supported Browser

Internet Explorer 7 Firefox 3.6 Google Chrome 7 Safari 5.0.1 Opera 10
Yes Yes Yes Yes Yes

See also :

JavaScript Client side objects, methods, properties.

JavaScript Core objects, methods, properties.

<<PreviousNext>>