Jump to content

paulalbert

New Members
  • Posts

    1
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

paulalbert's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. <html> <head> <title>Last Modified</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <script type="text/javascript"> function showLastModified() { var out = document.getElementById('lastModified'); var d = new Date(); if (d.toLocaleDateString) { out.innerHTML = d.toLocaleDateString(document.lastModified); } else { out.innerHTML = document.lastModified; } } window.onload = showLastModified; </script> </head> <body> Last Modified on <span id="lastModified"> </span> </body> </html>
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.