luis11zivalevo
05-18-2009, 02:57 PM
I need code for automatical updateing the date on my last change for my website? Please
|
Click to See Complete Forum and Search --> : CAan Someone Help me? luis11zivalevo 05-18-2009, 02:57 PM I need code for automatical updateing the date on my last change for my website? Please KDLA 05-18-2009, 03:50 PM function Revision() { var Updated=new Date(document.lastModified); var Year=Updated.getYear(); if(Year<1900) { // some browsers return 103 for 2003 !! Year +=1900; } var Month=Updated.getMonth(); var Day=Updated.getDate(); return Day+' '+Months[Month]+' '+Year; } Source: http://www.webdeveloper.com/forum/archive/index.php/t-16655.html webdeveloper.com
Copyright Internet.com Inc., All Rights Reserved. |