Skip to content

Instantly share code, notes, and snippets.

@filipelinhares
Created February 10, 2016 18:21
Show Gist options
  • Save filipelinhares/a1735e128c28b6e1570d to your computer and use it in GitHub Desktop.
Save filipelinhares/a1735e128c28b6e1570d to your computer and use it in GitHub Desktop.
Is element overflowing?
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