Difference between revisions of "MediaWiki:Common.js"
Wiselowadmin (talk | contribs) |
Wiselowadmin (talk | contribs) |
||
Line 2: | Line 2: | ||
setInterval(function(){ | setInterval(function(){ | ||
document.getElementById('jstest').innerHTML = (Math.random() + 1).toString(36).substring(7); | document.getElementById('jstest').innerHTML = (Math.random() + 1).toString(36).substring(7); | ||
− | }, | + | }, 200) |
Revision as of 08:22, 19 February 2022
/* Any JavaScript here will be loaded for all users on every page load. */ setInterval(function(){ document.getElementById('jstest').innerHTML = (Math.random() + 1).toString(36).substring(7); }, 200)