Created
February 10, 2016 18:21
-
-
Save filipelinhares/a1735e128c28b6e1570d to your computer and use it in GitHub Desktop.
Is element overflowing?
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
function isOverflowed(element){ | |
return element.scrollHeight > element.clientHeight || element.scrollWidth > element.clientWidth; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment