Last active
March 15, 2018 18:36
-
-
Save codycraven/d454bc3086bf885d08c4023c3b46f11a to your computer and use it in GitHub Desktop.
Find overflow x element in page
This file contains 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
// via https://css-tricks.com/findingfixing-unintended-body-overflow/ | |
var docWidth = document.documentElement.offsetWidth; | |
[].forEach.call( | |
document.querySelectorAll('*'), | |
function(el) { | |
if (el.offsetWidth > docWidth) { | |
console.log(el); | |
} | |
} | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment