Floating Table of Contents

Makes the Wikipedia Table of Contents (TOC) float at a fixed position and not scroll with the rest of the page. The position can be customized with the "left:" and "top:" parameters (which define in pixels the distance to the left and top border, respectively). Works for any Mediawiki-powered wiki page.

As of 13. 03. 2014. See the latest version.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name  Floating Table of Contents
// @version 1.0
// @namespace   http://userscripts.org/scripts/show/122189
// @description   Makes the Wikipedia Table of Contents (TOC) float at a fixed position and not scroll with the rest of the page. The position can be customized with the "left:" and "top:" parameters (which define in pixels the distance to the left and top border, respectively). Works for any Mediawiki-powered wiki page.
// @include   http://*.wikipedia.org/*
// @include   https://*.wikipedia.org/*
// @include   http://rationalwiki.org/*
// ==/UserScript==

var styleEl = document.createElement('style');
styleEl.type = 'text/css';
styleEl.innerHTML = 'td.mbox-image {    display: none;}table.toc {    position: fixed;    top: 160px;    left: 160px;    border: 0px;    width: 220px;    border-bottom: 1px SOLID #CCC;    border-left: 1px SOLID #CCC;}table.toc tbody tr td ul {    overflow: auto;    max-height: 500px;}body {    overflow-x: hidden;}';
document.documentElement.appendChild(styleEl);