Created
January 19, 2017 23:00
-
-
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $("*").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