Development JavaScript DHTML



Time Stamper



update = new Date(document.lastModified)
theMonth = update.getMonth() + 1
theDate = update.getDate()
theYear = update.getFullYear()
document.writeln("Last updated:" + theMonth + "/" + theDate + "/" + theYear + "")