Skip to content

Instantly share code, notes, and snippets.

@taher435
Created February 14, 2016 13:39
Show Gist options
  • Save taher435/7624358bb56353ebbd0a to your computer and use it in GitHub Desktop.
Save taher435/7624358bb56353ebbd0a to your computer and use it in GitHub Desktop.
Find the horizontal scroll culprit
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