DHTML Object Properties DHTML Objects
Retrieves the date the file was created.
HTML |
N/A |
Script |
[ sDate = ] img.fileCreatedDate |
sDate |
String specifying the date the file was created ( 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 created to a variable named dateCreated and displays it in a message box.
var dateCreated = document.fileCreatedDate;
alert ( dateCreated );
Show me
document, IMG