Chú ý: Sau khi lưu thay đổi trang, bạn phải xóa bộ nhớ đệm của trình duyệt để nhìn thấy các thay đổi. Google Chrome, Firefox, Internet ExplorerSafari: Giữ phím ⇧ Shift và nhấn nút Reload/Tải lại trên thanh công cụ của trình duyệt. Để biết chi tiết và hướng dẫn cho các trình duyệt khác, xem Trợ giúp:Xóa bộ nhớ đệm.

//A clock that autoupdates
//From the user scripts project
$(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);
}