document.querySelectorAll('body *').forEach(tag => getComputedStyle(tag).position === 'fixed' && tag.remove() );
- you can use `remove()` directly on the DOM node you want to remove
- you can use `remove()` directly on the DOM node you want to remove