Skip to content

Instantly share code, notes, and snippets.

@saschanaz
Last active March 14, 2016 05:48
Show Gist options
  • Save saschanaz/0963a582f66ff407fd83 to your computer and use it in GitHub Desktop.
Save saschanaz/0963a582f66ff407fd83 to your computer and use it in GitHub Desktop.
DOM overflow checker
for (const element of Array.from(document.querySelectorAll('*'))) {
if (element.clientWidth > window.innerWidth) {
console.log("Wider Element: ", element, ", width: ", element.clientWidth)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment