I am having trouble with the output from this code.
<!-- Begin
var m = "Page Updated " + document.lastModified;
var p = m.length-8;
document.writeln("<right>");
document.write(m.substring(p, 0));
document.writeln("</right>");
// End -->
it out puts a date like this.
Page Updated Fri, 23 Sep 2005 22:3
the last number is not there. Anyone have any clue why?
<!-- Begin
var m = "Page Updated " + document.lastModified;
var p = m.length-8;
document.writeln("<right>");
document.write(m.substring(p, 0));
document.writeln("</right>");
// End -->
it out puts a date like this.
Page Updated Fri, 23 Sep 2005 22:3
the last number is not there. Anyone have any clue why?