MediaWiki:Common.js: Difference between revisions

no edit summary
(Undo revision 567 by Mlavazza (talk))
Tags: Replaced Undo
No edit summary
Line 1: Line 1:
/* Any JavaScript here will be loaded for all users on every page load. */
/* Any JavaScript here will be loaded for all users on every page load. */
//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();
}