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.
functionliveClock(){appendCSS("#utcdate a { font-weight:bolder; font-size:120%; }");if(typeof(UTCLiveClockConfig)=='undefined')UTCLiveClockConfig={};varportletId=UTCLiveClockConfig.portletId||'p-personal';varnextNode=UTCLiveClockConfig.nextNodeId?document.getElementById(UTCLiveClockConfig.nextNodeId):undefined;liveClock.node=addPortletLink(portletId,wgServer+wgScriptPath+'/index.php?title='+encodeURIComponent(wgPageName)+'&action=purge','','utcdate',undefined,undefined,nextNode);if(!liveClock.node)return;showTime();}addOnloadHook(liveClock)functionshowTime(){vardateNode=liveClock.node;if(!dateNode)return;varnow=newDate();varhh=now.getUTCHours();varmm=now.getUTCMinutes();varss=now.getUTCSeconds();vartime=(hh<10?'0'+hh:hh)+':'+(mm<10?'0'+mm:mm)+':'+(ss<10?'0'+ss:ss);dateNode.firstChild.replaceChild(document.createTextNode(time),dateNode.firstChild.firstChild);window.setTimeout(showTime,1000);}