Skip to content

Instantly share code, notes, and snippets.

@JimmyHowe
Created November 28, 2019 11:41
Show Gist options
  • Save JimmyHowe/9deccb84134e8723b118574fbf37831b to your computer and use it in GitHub Desktop.
Save JimmyHowe/9deccb84134e8723b118574fbf37831b to your computer and use it in GitHub Desktop.
Check for elements pushing off screen
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