Skip to content

Instantly share code, notes, and snippets.

@cheeaun
Created March 3, 2009 14:34
Show Gist options
  • Save cheeaun/73342 to your computer and use it in GitHub Desktop.
Save cheeaun/73342 to your computer and use it in GitHub Desktop.
Mootools Element extras: isVisible and isHidden
/*
* Inspired from http://github.com/jeresig/sizzle/commit/7631f9c3f85e5fa72ac51532399cb593c2cdc71f
*/
Element.implement({
isVisible: function(){
return elem.offsetWidth > 0 || elem.offsetHeight > 0;
},
isHidden: function(){
return elem.offsetWidth === 0 || elem.offsetHeight === 0;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment