wikipedia table header float

2/8/2022, 6:40:34 PM

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        wikipedia table header float
// @namespace   Violentmonkey Scripts
// @grant       none
// @version     1.0
// @author      tanhaworen
// @description 2/8/2022, 6:40:34 PM
// @match      https://*.wikipedia.org/wiki/*
// @run-at     document-start
// @license      GNU GPLv2
// ==/UserScript==


document.addEventListener('DOMNodeInserted', function() {
  var listOfThead = document.getElementsByTagName('thead');
  //console.log(listOfThead)
  var num = listOfThead.length;
  //console.log(num)
  var newUI = document.getElementById('vector-sticky-header');
    if (num > 0 ){
    Array.from(listOfThead).forEach(child => {
      child.style.position = "sticky";
      if(newUI){
          child.style.top = "50px";
      } else {
          child.style.top = 0;
      }
    });
  }
}, false);