MediaWiki:Gadget-CategoryAboveAll.js
//* by [[User:Ianezz]] ([[Commons:Village_pump/Archive/2009Sep#CSS_placement_of_categories]]), based on [[:wikinews:Help:User_style#Moving_categories_to_top]]
$(function () {
if (mw.config.get('wgNamespaceNumber') !== -1) {
var bc = document.getElementById('bodyContent') || document.getElementById('mw-content-text');
var catlinks = document.getElementById('catlinks');
// Note no catlinks on mobile Minerva skin
if (bc && catlinks) bc.insertBefore(catlinks, bc.childNodes[0]);
}
});