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 most Mediawiki-powered wiki websites.

Verzia zo dňa 16.03.2014. Pozri najnovšiu verziu.

Na nainštalovanie skriptu si budete musieť nainštalovať rozšírenie, ako napríklad Tampermonkey, Greasemonkey alebo Violentmonkey.

Na nainštalovanie skriptu si budete musieť nainštalovať rozšírenie, ako napríklad Tampermonkey, % alebo Violentmonkey.

Na nainštalovanie skriptu si budete musieť nainštalovať rozšírenie, ako napríklad Tampermonkey, % alebo Violentmonkey.

Na nainštalovanie skriptu si budete musieť nainštalovať rozšírenie, ako napríklad Tampermonkey alebo Userscripts.

Na inštaláciu tohto skriptu je potrebné nainštalovať rozšírenie, ako napríklad Tampermonkey.

Na inštaláciu tohto skriptu je potrebné nainštalovať rozšírenie správcu používateľských skriptov.

(Už mám správcu používateľských skriptov, nechajte ma ho nainštalovať!)

Na inštaláciu tohto štýlu je potrebné nainštalovať rozšírenie, ako napríklad Stylus.

Na inštaláciu tohto štýlu je potrebné nainštalovať rozšírenie, ako napríklad Stylus.

Na inštaláciu tohto štýlu je potrebné nainštalovať rozšírenie, ako napríklad Stylus.

Na inštaláciu tohto štýlu je potrebné nainštalovať rozšírenie správcu používateľských štýlov.

Na inštaláciu tohto štýlu je potrebné nainštalovať rozšírenie správcu používateľských štýlov.

Na inštaláciu tohto štýlu je potrebné nainštalovať rozšírenie správcu používateľských štýlov.

(Už mám správcu používateľských štýlov, nechajte ma ho nainštalovať!)

// ==UserScript==
// @name  Floating Table of Contents
// @version 1.2
// @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 most Mediawiki-powered wiki websites.
// @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);
var styleEl = document.createElement('style');
styleEl.type = 'text/css';
styleEl.innerHTML = 'td.mbox-image { display: none;} div.toc { position: fixed; top: 160px; left: 160px; border: 0px;  width: 220px; border-bottom: 1px SOLID #CCC; border-left: 1px SOLID #CCC;} div.toc ul {overflow: auto;  max-height: 500px;} body {overflow-x: hidden;}';
document.documentElement.appendChild(styleEl);