Skip to content

Instantly share code, notes, and snippets.

@bgando
Created November 1, 2017 06:47
Show Gist options
  • Save bgando/8a0bedeb738667b979c2f714515f0665 to your computer and use it in GitHub Desktop.
Save bgando/8a0bedeb738667b979c2f714515f0665 to your computer and use it in GitHub Desktop.
detect if an element is causing horizontal scroll
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