xleotranx
7/11/2016 - 7:34 AM

Find all elements with width larger than

Find all elements with width larger than

$("*").each(function() {
    if ($(this).width() > $(window).width()) {
        console.log(this.tagName + "#" + this.id);
console.dir(this);
    }
});