MediaWiki:MOTD.js
Appearance
Note: After publishing, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
function getRandomQuote (items) {
return Math.floor(Math.random() * items.length);
}
$.get('https://wiki.project1999.com/MediaWiki:Quotes.json').then(html => {
var raw = html
.split('<pre class="mw-code mw-js" dir="ltr">')[1]
.split('/pre>')[0]
.trim()
.replaceAll('"', '"');
var messages = JSON.parse(raw);
console.log(getRandomQuote(messages));
};