User:Chinggis6/global.js

From Meta, a Wikimedia project coordination wiki

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.
/*
Move Categories Top for Wikis
As by selecting Cologne Blue skin at Appearance tab of Preferences special page
Or by appending ?useskin=cologneblue to the URL
https://en.wikipedia.org/wiki/Special:Preferences#mw-prefsection-rendering
https://en.wikinews.org/wiki/Help:User_style#Moving_categories_to_top
*/

jQuery(function() {
  if (mw.config.get('wgCanonicalNamespace') === "Special") return;
  var cats = document.getElementById('catlinks');
  var bc = document.getElementById('bodyContent');
  if ( bc !== null ) {
    bc.insertBefore(cats, bc.childNodes[0]);
  }
});