Jump to content

User:Voice of All/UTCclock.js

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Aaron Schulz (talk | contribs) at 04:12, 11 June 2007 (m). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.
//A clock that autoupdates
//From the user scripts project
addOnloadHook(loadclock)
function loadclock()
{
  //monobook
    if (document.getElementById('pt-userpage'))
      {
      var toplinks = document.getElementById('p-personal').getElementsByTagName('ul')[0];
      addlilink(toplinks, '/w/index.php?title=' + wgPageName.replace(/&/g,'%26') + '&action=purge', '', 'utcdate');
      }
  //cologneblue
    else if (document.getElementById('quickbar') && document.getElementById('quickbar').getElementsByTagName('h6')[0])
       {
       var toplinks = document.getElementById('quickbar');
       addquickbarlink('/w/index.php?title=' + wgPageName.replace(/&/g,'%26') + '&action=purge', 'Current time', 'utcdate','Browse')
       }
    showtime();
}

function showtime()
{
    var timerID;
    var now = new Date();
    var timeValue = now.toUTCString().substring(0,22) + " UTC";
    if (document.getElementById('utcdate'))
      {document.getElementById('utcdate').firstChild.innerHTML = timeValue;}
    timerID = setTimeout('showtime()', 1000);
}