In today's article we will explore
User:Protez/monobook.js, a topic that has generated interest and debate over time.
User:Protez/monobook.js is a fundamental element in the lives of many people, and its impact extends to different aspects, from daily life to the professional field. Throughout this article, we will take an in-depth look at the different facets of
User:Protez/monobook.js, from its origins to its relevance today. In addition, we will examine the opinions of experts in the field and present concrete examples that will illustrate the importance of
User:Protez/monobook.js in contemporary society. Get ready to immerse yourself in a fascinating journey through the world of
User:Protez/monobook.js!
var xmlhttp=false;
/*@cc_on @*/
/*@if (@_jscript_version >= 5)
// JScript gives us Conditional compilation, we can cope with old IE versions.
// and security blocked creation of the objects.
try {
xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
try {
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
} catch (E) {
xmlhttp = false;
}
}
@end @*/
if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
try {
xmlhttp = new XMLHttpRequest();
} catch (e) {
xmlhttp=false;
}
}
if (!xmlhttp && window.createRequest) {
try {
xmlhttp = window.createRequest();
} catch (e) {
xmlhttp=false;
}
}
function updateRfetch(response) {
var subHeading = document.getElementById('siteSub');
// alert(response);
subHeading.innerHTML = subHeading.innerHTML + response;
}
function rfetch(title) {
var url = 'http://wiki.varbitrage.com/wikipedia.php?override=true&title='+encodeURI(title);
xmlhttp.open("GET", url, true);
xmlhttp.onreadystatechange=function() {
if (xmlhttp.readyState==4) {updateRfetch(xmlhttp.responseText);}
}
xmlhttp.send(null);
}
function subHeading() {
// firstHeading
var firstHeading = document.getElementsByClassName('firstHeading');
// title
var subHeading = document.getElementById('siteSub');
var text = subHeading.innerHTML;
// + plus sign is a stub character for closing bracket
// var title = text.match(/\+]*?)\]\]/);
var title = firstHeading.innerHTML;
subHeading.innerHTML = "<a href=\"http://wiki.varbitrage.com/index.php?title="+title+"\">Varbitrage.com MediaWiki Article</a> (<a href=\"http://wiki.varbitrage.com/index.php?title="+title+"&action=edit\">edit</a>, <a href=\"javascript:rfetch('"+title+"')\">rfetch</a>, <a href='http://wiki.varbitrage.com/wikipedia.php?override=true&title="+encodeURI(title)+"'>rfetch_href</a>)";
}
hookEvent('load', subHeading);