Skip to content

Instantly share code, notes, and snippets.

@MTco
Forked from alisdair/kill-sticky.js
Last active August 23, 2018 16:51
Show Gist options
  • Save MTco/820a16d4aa5e126b7999c8b34ff3b3e2 to your computer and use it in GitHub Desktop.
Save MTco/820a16d4aa5e126b7999c8b34ff3b3e2 to your computer and use it in GitHub Desktop.
Kill sticky headers.
(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