Skip to content

Instantly share code, notes, and snippets.

@Cloudxtreme
Created December 2, 2017 04:00
Show Gist options
  • Save Cloudxtreme/70f52ecfa096dfdb6fd0320e9c89297b to your computer and use it in GitHub Desktop.
Save Cloudxtreme/70f52ecfa096dfdb6fd0320e9c89297b to your computer and use it in GitHub Desktop.
Bookmarklet to remove annoying non-scrolling elemets such as headers/footers on a web page.
// pure js
javascript:
(function(){
var elems=document.body.getElementsByTagName("*");
var len=elems.length;
for(var i=0;i<len;i++){
if(window.getComputedStyle(elems[i],null).getPropertyValue('position')=='fixed'){
var el = elems[i];
el.parentNode.removeChild(el);
}
}
}
)()
// minified bookmarklet
javascript:(function(){var elems=document.body.getElementsByTagName("*");var len=elems.length;for(var i=0;i<len;i++){if(window.getComputedStyle(elems[i],null).getPropertyValue('position')=='fixed'){var el=elems[i];el.parentNode.removeChild(el);}}})()
// jquery version
javascript:(function(){$('*').filter(function (){$(this).css('position')=='fixed'&&$(this).remove();})})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment