filthyfox
10/16/2017 - 11:30 AM

Finding Unintended Body Overflow

Finding Unintended Body Overflow

var docWidth = document.documentElement.offsetWidth;

[].forEach.call(
  document.querySelectorAll('*'),
  function(el) {
    if (el.offsetWidth > docWidth) {
      console.log(el);
    }
  }
);