Xavier/common.js
Note: After saving, 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)
- Internet Explorer: Hold Ctrl while clicking Refresh, or press Ctrl-F5
- Opera: Go to Menu → Settings (Opera → Preferences on a Mac) and then to Privacy & security → Clear browsing data → Cached images and files.
var numWords = $("#mw-content-text > div").text().split(" ").length;
var headerWords = $("h1").text().split(" ").length;
var totalWords = numWords + headerWords;
var wpm = totalWords / 200;
var minutes = wpm;
var rminutes = Math.floor(minutes);
var seconds= (minutes - rminutes) * 60;
var rseconds = Math.floor(seconds);
var header = $("h1").text().replace('[edit | edit source]+link+','');
$("h1").text(header + " (" + rminutes + " m " + rseconds + "s)");
var x = document.getElementsByClassName("mw-headline");
console.log(x);
/*
var x = document.getElementsByClassName("mw-headline");
ocument.getElementById("add_after_me").insertAdjacentHTML("afterend",
"<h3>This is the text which has been inserted by JS</h3>");
*/
Comments or questions about this documentation? Contact us for support!
