« Utilisateur:Daniel/common.js » : différence entre les versions
Aucun résumé des modifications Balise : Révocation manuelle |
Aucun résumé des modifications |
||
Ligne 7 : | Ligne 7 : | ||
alert("Dans D/common.js"); | alert("Dans D/common.js"); | ||
var numWords = $("#mw-content-text > div").text().split(" ").length; | |||
var headerWords = $("h1").text().split(" ").length; | |||
var totalWords = numWords + headerWords; | |||
var timeInMinutes = totalWords / 200; | |||
var header = $("h1").text(); | |||
$("h1").text(header + " (it will take you " + timeInMinutes + " minutes to read this page)"); |
Version du 13 novembre 2023 à 16:24
/*******************************************************************************/ /* Javascript ... pour test avant de passer en common pour tous */ /* */ /* http://www.mediawiki.org/w/index.php?... */ /********************************************************************************/ alert("Dans D/common.js"); var numWords = $("#mw-content-text > div").text().split(" ").length; var headerWords = $("h1").text().split(" ").length; var totalWords = numWords + headerWords; var timeInMinutes = totalWords / 200; var header = $("h1").text(); $("h1").text(header + " (it will take you " + timeInMinutes + " minutes to read this page)");