Skip to content

Instantly share code, notes, and snippets.

View savedario's full-sized avatar

Dario Savella savedario

  • Köln - Germany
View GitHub Profile
@savedario
savedario / gist:a0d95e82344b19655865386e4d930e29
Created December 17, 2021 10:06
List DOM elements wider than viewport
# Selector can be p.class or DIV#id, just like jQuery
var docWidth = document.documentElement.offsetWidth;
[].forEach.call(
document.querySelectorAll('*'),
function(el) {
if (el.offsetWidth > docWidth) {
console.log(el);
}