User:Xenwolf/vector.js

From Xenharmonic Wiki
Revision as of 16:19, 13 May 2020 by Xenwolf (talk | contribs) (test https://www.mediawiki.org/wiki/Gadget_kitchen)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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 () {
   /* original source: https://www.mediawiki.org/wiki/Gadget_kitchen */
   let numWords = $("#mw-content-text > div").text().split(" ").length;
   let headerWords = $("h1").text().split(" ").length;
   let totalWords = numWords + headerWords;
   let timeInMinutes = totalWords / 200;
   let header = $("h1").text();
   $("h1").text(header + " (it will take you " + timeInMinutes + " minutes to read this page)");
 });