Skip to content

Instantly share code, notes, and snippets.

@paalwilliams
Last active May 17, 2020 01:42
Show Gist options
  • Save paalwilliams/c0d9d069c4a3fd01110ea9afec951732 to your computer and use it in GitHub Desktop.
Save paalwilliams/c0d9d069c4a3fd01110ea9afec951732 to your computer and use it in GitHub Desktop.
find and console log elements overflowing the page (horizontal scroll)
//Console log elements wider than page
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