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 07:44, 5 June 2006 (1). 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.
//<pre>A clock that autoupdates
addOnloadHook(loadclock)
function loadclock()
{
    // add a clock
    var title = document.title.split(' - ')[0].split(' (section)')[0].replace('Editing ','');
    var toplinks = document.getElementById('p-personal').getElementsByTagName('ul')[0];
    addlilink(toplinks, 'http://en.wikipedia.org/w/index.php?title=' + title + '&action=purge', '', 'utcdate');
    showtime();
}

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