_ _    _ _____  ___   __                       
 __      _(_) | _(_)___ / ( _ ) / /_   ___ ___  _ __ ___  
 \ \ /\ / / | |/ / | |_ \ / _ \| '_ \ / __/ _ \| '_ ` _ \ 
  \ V  V /| |   <| |___) | (_) | (_) | (_| (_) | | | | | |
   \_/\_/ |_|_|\_\_|____/ \___/ \___(_)___\___/|_| |_| |_|

User:Voice of All/UTCclock.js

User:Voice of All/UTCclock.js is said to be one of the most important topics today as it has a significant impact on people's lives. It doesn't matter if you are a student, a professional, an art lover or a technology expert, User:Voice of All/UTCclock.js is a topic that undoubtedly concerns you. In this article, we will cover different aspects of User:Voice of All/UTCclock.js, from its history to its relevance in modern society. We will also explore the various opinions and perspectives surrounding User:Voice of All/UTCclock.js, with the goal of providing a comprehensive view of the topic. Get ready to immerse yourself in the fascinating world of User:Voice of All/UTCclock.js and discover its impact on today's world!
//A clock that autoupdates
//From the user scripts project
$(loadclock)
function loadclock()
{
  if(typeof addlilink === 'undefined') { mw.log.error('User:Voice_of_All/UTCclock.js is not working.'); return; }
  //monobook
    if (document.getElementById('pt-userpage'))
      {
      var toplinks = document.getElementById('p-personal').getElementsByTagName('ul');
      addlilink(toplinks, mw.config.get('wgScript') + '?title=' + mw.config.get('wgPageName').replace(/&/g,'%26') + '&action=purge', '', 'utcdate');
      }
  //cologneblue
    else if (document.getElementById('quickbar') && document.getElementById('quickbar').getElementsByTagName('h6'))
       {
       var toplinks = document.getElementById('quickbar');
       addquickbarlink(mw.config.get('wgScript') + '?title=' + mw.config.get('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);
}