Note: After saving, changes may not occur immediately. Click here to learn how to bypass your browser's cache.
  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (Cmd-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (Cmd-Shift-R on a Mac)
  • Internet Explorer: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Clear the cache in Tools → Preferences

For details and instructions about other browsers, see Wikipedia:Bypass your cache.

// The following unlikely looking code looks for 'page quality'
// (radio) buttons on the current page and, if found, registers
// a callback (/closure?) for selection of each one found which
// simply populates the change summary field with a comment,
// containing the title of the last radio button chosen.
//
// This effectively reconstructs the behaviour of the old
// javascript ProofReadPage extension prior to the deployment
// of wmf version 1.23wmf5 (e602d2d).

//Fixed in 1.23wmf6 (cc018cb). See
// [//en.wikisource.org/w/index.php?title=Wikisource:Scriptorium&diff=4689290&oldid=4688163]

//var SummaryNode = document.getElementById('wpSummary');

//var Inputs = document.getElementsByTagName('input');

//for (var N = Inputs.length - 1; N >= 0; N--) {
//  if (Inputs[N].getAttribute('name')=='wpQuality') {
//  	Inputs[N].onclick = (function(summary) {
//        return function() {
//          SummaryNode.value = summary;
//          return true;
//        };
//    })( "/* "+Inputs[N].title+" */" );
//  }
//}