Created
March 17, 2023 13:37
-
-
Save plencovich/cd350682c6085decf507a6afabc3b488 to your computer and use it in GitHub Desktop.
Conocer que elemento genera scroll horizontal en una web
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
document | |
.querySelectorAll("*") | |
.forEach(el => { | |
const { offsetWidth } = document.documentElement | |
if (el.offsetWidth > offsetWidth) { | |
console.log(el); | |
} | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment