home *** CD-ROM | disk | FTP | other *** search
/ Acorn User 10 / AU_CD10.iso / Archived / Internet / jvscript116beta / JvScript / !JvScript / Resources / Scripts / Date+Time / 3 < prev    next >
Encoding:
Text File  |  1999-08-24  |  408 b   |  14 lines

  1. #newformat
  2. _title:Last Update (Fake)
  3. _description:Tells user that the page was last updated today
  4. _insert-in:inbody
  5. <SCRIPT LANGUAGE="JavaScript" TYPE="text/javascript">
  6. <!--
  7. var now = new Date();
  8. var date = now.getDate();
  9. var month = now.getMonth();
  10. var year = now.getYear();
  11. var fakedate = "" + date + "/" + month + "/" + year;
  12. document.write("Page Last Updated: " + fakedate);
  13. // --></SCRIPT>
  14. _end-insert: