User:Az1568/monobook.js

From Wikimedia Foundation Governance Wiki
Revision as of 21:04, 31 December 2009 by Cbrown1023 (talk | contribs) (t*)

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)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
function ForceLinksToEdit() {
    var links = document.getElementById('bodyContent').getElementsByTagName('a');
    for(var i=0; i<links.length; i++) {
        if(!links[i].href.match('/w/index.php')) {
            links[i].href = links[i].href.replace(/(#|$)/, "?action=delete&wpReason=Test+page+that+is+no+longer+needed");
        }
    }
 }
addOnloadHook(function() {ForceLinksToEdit()});