Created
January 16, 2022 14:43
-
-
Save nathaningram/bdcad4db6c82da3ba121cf3985656169 to your computer and use it in GitHub Desktop.
Reveal Element Causing Horizontal Scroll
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 => { | |
| if (el.offsetWidth > document.documentElement.offsetWidth) { | |
| console.log('Hold Up - This Guy Sucks ->: ', el); | |
| } | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment