646 B
646 B
title, tags
| title | tags |
|---|---|
| getElementsBiggerThanViewport | browser,intermediate |
Returns an array of HTML elements whose width is larger than that of the viewport's.
- Use
HTMLElement.offsetWidthto get the width of thedocument. - Use
Array.prototype.filter()on the result ofDocument.querySelectorAll()to check the width of all elements in the document.
const getElementsBiggerThanViewport = () => {
const docWidth = document.documentElement.offsetWidth;
return [...document.querySelectorAll('*')].filter(
el => el.offsetWidth > docWidth
);
};
getElementsBiggerThanViewport(); // <div id="ultra-wide-item" />