Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

I rewrote this to be a little more succinct:

    document.querySelectorAll('body *').forEach(tag =>
      getComputedStyle(tag).position === 'fixed' && tag.remove()
    );
- you can use `forEach()` on the NodeList that `querySelectorAll()` returns

- you can use `remove()` directly on the DOM node you want to remove



Here for an improved version: https://github.com/t-mart/kill-sticky




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: