DHTML Object Properties DHTML Objects
Retrieves the date the file was last modified.
HTML |
N/A |
Script |
[ sDate = ] img.fileModifiedDate |
sDate |
Date of the last file modification ( for example, "Monday, December 08, 1997" ). |
The property is read-only with no default value.
This example code fragment assigns the date the current file was last modified to a variable named lastModify and displays it in a message box.
var lastModify = document.fileModifiedDate;
alert ( dateCreated );
Show me
document, IMG