Увага: Після публікування слід очистити кеш браузера, щоб побачити зміни.

  • Firefox / Safari: тримайте Shift, коли натискаєте Оновити, або натисніть Ctrl-F5 чи Ctrl-Shift-R (⌘-R на Apple Mac)
  • Google Chrome: натисніть Ctrl-Shift-R (⌘-Shift-R на Apple Mac)
  • Internet Explorer / Edge: тримайте Ctrl, коли натискаєте Оновити, або натисніть Ctrl-F5
  • Opera: натисніть Ctrl-F5
   function httpGet(theUrl){
    var xmlHttp = null;
 
    xmlHttp = new XMLHttpRequest();
    xmlHttp.open( "GET", theUrl, false );
    xmlHttp.send( null );
    return xmlHttp.responseXML;
    }

currPGG=mw.config.get( 'wgPageName' );
if(currPGG.indexOf('/')>-1&&currPGG.indexOf('Користувач:')>-1){
userG = httpGet('http://uk.wikiquote.org/w/api.php?action=query&list=users&format=xml&usprop=gender&ususers='+currPGG).getElementsByTagName('user')[0].getAttribute('gender');
if(userG=='male'){
genderDes="{{comment|чол|це користувач}}";
}
else{
if(userG=='female'){
genderDes="{{comment|жін|це користувачка}}";
}
else{}
}
document.getElementById("firstHeading").innerHTML=document.getElementById("firstHeading").innerHTML+" <small>"+genderDes+"\<\/small>";
}

else{}