-
-
Save MTco/820a16d4aa5e126b7999c8b34ff3b3e2 to your computer and use it in GitHub Desktop.
Kill sticky headers.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function(uw,l,o){ | |
try{ | |
uw=uw!==void 0?uw:window; | |
l=uw.document; | |
o.els=l.querySelectorAll('body *'); | |
o.strlngth=o.els.length; | |
for(o.i=0;o.i<=o.strlngth;o.i++){ | |
o.el=o.els[o.i]; | |
if( o.checkFor.includes(getComputedStyle(o.el).position) ){ | |
o.el.parentNode.removeChild(o.el); | |
} | |
} | |
}catch(o){} | |
})((typeof unsafeWindow!==''+void 0)?unsafeWindow:window,!1,{i:0,checkFor:['fixed','sticky']}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment