$.each( $('*'), function() {
if( $(this).width() > $('body').width()) {
console.log("Wide Element: ", $(this), "Width: ", $(this).width());
}
});
document.querySelectorAll('*').forEach(function(e) {
if(document.querySelector('body').scrollWidth < e.scrollWidth) {
console.log(e);
}
})