Find all elements with width larger than
$("*").each(function() { if ($(this).width() > $(window).width()) { console.log(this.tagName + "#" + this.id); console.dir(this); } });