User:It's moon/common.js

From Just Solve the File Format Problem
< User:It's moon(Difference between revisions)
Jump to: navigation, search
(Created page with "// Automatically submit Special:Captcha $(function () { if ($("#wpCaptchaWord").length) { $("#wpCaptchaWord").val("herpderp"); $("#wpSave").click(); } });")
 
(Is this even loading?)
 
(2 intermediate revisions by one user not shown)
Line 1: Line 1:
// Automatically submit Special:Captcha
+
const numWords = $( '#mw-content-text > div' ).text().split( ' ' ).length;
$(function () {
+
const headerWords = $( 'h1' ).text().split( ' ' ).length;
 
+
const totalWords = numWords + headerWords;
  if ($("#wpCaptchaWord").length) {
+
const timeInMinutes = totalWords / 200;
    $("#wpCaptchaWord").val("herpderp");
+
const header = $( 'h1' ).text();
    $("#wpSave").click();
+
$( 'h1' ).text( header + ' (it will take you ' + timeInMinutes + ' minutes to read this page)' );
  }
+
});
+

Latest revision as of 05:02, 23 May 2025

const numWords = $( '#mw-content-text > div' ).text().split( ' ' ).length;
const headerWords = $( 'h1' ).text().split( ' ' ).length;
const totalWords = numWords + headerWords;
const timeInMinutes = totalWords / 200;
const header = $( 'h1' ).text();
$( 'h1' ).text( header + ' (it will take you ' + timeInMinutes + ' minutes to read this page)' );
Personal tools
Namespaces

Variants
Actions
Navigation
Toolbox