Note : après avoir enregistré la page, vous devrez forcer le rechargement complet du cache de votre navigateur pour voir les changements.

Mozilla / Firefox / Konqueror / Safari : maintenez la touche Majuscule (Shift) en cliquant sur le bouton Actualiser (Reload) ou pressez Maj-Ctrl-R (Cmd-R sur Apple Mac) ;

Chrome / Internet Explorer / Opera : maintenez la touche Ctrl en cliquant sur le bouton Actualiser ou pressez Ctrl-F5.
// This script is for showing an estimated number of minutes to read the shown article (from https://www.mediawiki.org/wiki/ChickTech_High_School_Kickoff_2017/Tasks#Write_a_user_script_to_count_the_number_of_words_in_an_article_and_display_the_number_at_the_top_of_the_page)

// 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 + " (temps de lecture estimé: " + timeInMinutes + " min)");