CD-363Appendix F . Examples from Parts III and (Web hosting compare)
Monday, December 17th, 2007CD-363Appendix F . Examples from Parts III and IV function fillInBlanks() { var created = document.fileCreatedDate var modified = document.fileModifiedDate document.all.created.innerText = created document.all.modified.innerText = modified var createdDate = new Date(created).getTime() var today = new Date().getTime() var diff = Math.floor((today - createdDate) / (1000*60*60*24)) document.all.diff.innerText = diff document.all.size.innerText = document.fileSize }
fileCreatedDate and fileModifiedDate Properties
This file ( bytes) was created on and most recently modified on .
It has been days since this file was created.