Skip to content

Instantly share code, notes, and snippets.

@jonyesno
Created November 13, 2014 03:38
Show Gist options
  • Save jonyesno/25448d0f927f74ed1d4c to your computer and use it in GitHub Desktop.
Save jonyesno/25448d0f927f74ed1d4c to your computer and use it in GitHub Desktop.
Javascript bookmark to unfix headers page elements that resist scrolling
// 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