Skip to content

Instantly share code, notes, and snippets.

@awongCM
Created February 6, 2018 07:01
Show Gist options
  • Save awongCM/caef3de22f77b85e483ebb3e5cb5a9f2 to your computer and use it in GitHub Desktop.
Save awongCM/caef3de22f77b85e483ebb3e5cb5a9f2 to your computer and use it in GitHub Desktop.
Find those pesky unintended body overflow
var doc_width = document.documentElement.offsetWidth;
[].forEach.call(
document.querySelectorAll("*"),
function(pesky_el) {
if(pesky_el.offsetWidth > doc_width) {
console.log(pesky_el);
}
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment