< User:Xavier
Revision as of 08:01, December 18, 2019 by Xavier (talk | contribs)
Jump to: navigation, search

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 minutes= Math.floor(totalWords/ 60);  
var seconds= minutes % 60;
var header = $("h1").text().replace('[edit | edit source]+link+','');
$("h1").text(header + " | words = " + totalWords + " (" + minutes + " m " + seconds + "s)");
Comments or questions about this documentation? Contact us for support!