Created
November 13, 2014 03:38
-
-
Save jonyesno/25448d0f927f74ed1d4c to your computer and use it in GitHub Desktop.
Javascript bookmark to unfix headers page elements that resist scrolling
This file contains hidden or 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
// from https://news.ycombinator.com/item?id=8554132 | |
javascript:(function()%20{%20var%20s,e,i,ee=document.getElementsByTagName('*');%20for(i=0;%20e=ee[i];%20i++)%20{%20s=getComputedStyle(e);%20if%20(s%20&&%20s.position%20==%20'fixed')%20e.style.position='static';%20}%20})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment