Skip to content

Instantly share code, notes, and snippets.

@jmonterroso
Last active August 29, 2015 14:15
Show Gist options
  • Save jmonterroso/8ab0151153049280bd1c to your computer and use it in GitHub Desktop.
Save jmonterroso/8ab0151153049280bd1c to your computer and use it in GitHub Desktop.
Larger element than width
$('*').each(function () {
var viewportWidth = 1024;
var outerWidth = $(this).outerWidth();
if( outerWidth > viewportWidth ){
//prints element in console so you can check what's the element
console.log($(this)[0]);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment