'fileCreatedDate' Example
<html> <body> <img id="myImage" src="http://www.java2s.com/style/logo.png"><br> <button onclick="alert(document.fileCreatedDate);">Document Created On</button> <button onclick="alert(myImage.fileModifiedDate);">Image Modified On</button> <button onclick="alert(myImage.fileSize);">Image Size</button> <button onclick="alert(myImage.fileUpdatedDate);">Image Updated on</button> <button onclick="alert(document.lastModified);">Document Modified On</button> </body> </html>
Related examples in the same category