Skip to content

nothingless/unsticky

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 

Repository files navigation

unsticky

A bookmarklet that removes sticky elements:

javascript:(function () {var i, elements = document.querySelectorAll('body *');for (i = 0; i < elements.length; i++) {if (["sticky","fixed"].indexOf(getComputedStyle(elements[i]).position)>-1) { elements[i].parentNode.removeChild(elements[i]);}document.body.style.overflow="auto"; }})();

About

A bookmarklet that removes sticky elements

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published