MediaWiki:Minerva.js: Difference between revisions

no edit summary
(Created page with "→‎All JavaScript here will be loaded for users of the MinervaNeue skin: //for counting visits function countVisit(x) { var processorFileURL = "https://www.wittgensteinproj...")
 
No edit summary
Line 1: Line 1:
/* All JavaScript here will be loaded for users of the MinervaNeue skin */
/* All JavaScript here will be loaded for users of the MinervaNeue skin */
//for counting visits
function countVisit(x) {
var processorFileURL = "https://www.wittgensteinproject.org/counter/visitCount"+x+".php";
var xhttp = new XMLHttpRequest();
xhttp.open("GET", processorFileURL, true);
xhttp.send();
}