Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Convert the .lastModified date

Status
Not open for further replies.

daph

Programmer
Jun 9, 2000
65
CA
Hey everyone :)<br><br>I just wanted to know if there is a way to convert the date of the document.lastModified property. The date that appears is in the format: 06/12/2000 14:18:00<br><br>I would like to have it: 2000/12/06<br><br>Anyone can help me out? <br><br>Thanks! :)<br><br>daph
 
Dear daph,<br><br>var dt = new Date(document.lastModified);<br>var sdtout = dt.getFullYear() + &quot;/&quot; + dt.getMonth() +<br>&nbsp;&nbsp;&quot;/&quot; + dt.getDate();<br><br>Hope this helps<br>-pete
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top