Skip to content

Instantly share code, notes, and snippets.

@matthewpizza
Last active October 23, 2016 23:42
Show Gist options
  • Select an option

  • Save matthewpizza/d41bbeb5423d934df911 to your computer and use it in GitHub Desktop.

Select an option

Save matthewpizza/d41bbeb5423d934df911 to your computer and use it in GitHub Desktop.
var all = document.getElementsByTagName('*');
var max = window.innerWidth;
for (var i = 0; i < all.length; i++) {
var el = all[i];
var width = all[i].offsetWidth;
if (width <= max) {
continue;
}
console.log({
el : el,
width: width
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment