Skip to content

Instantly share code, notes, and snippets.

@che-wf
Created January 19, 2017 23:00
Show Gist options
  • Select an option

  • Save che-wf/3adc1626f1b9c87f9e6f80e7ace197d1 to your computer and use it in GitHub Desktop.

Select an option

Save che-wf/3adc1626f1b9c87f9e6f80e7ace197d1 to your computer and use it in GitHub Desktop.
This is just a snippet that I run in console to find all elements larger than the windows width.
$("*").each(function() {
if ($(this).width() > $(window).width()) {
console.log(this);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment