Skip to content

Instantly share code, notes, and snippets.

@dnch
Created May 29, 2009 03:54
Show Gist options
  • Save dnch/119776 to your computer and use it in GitHub Desktop.
Save dnch/119776 to your computer and use it in GitHub Desktop.
// the DOM is wacky
targetTabHeight: function() {
this.targetTab().style.visibility = "hidden";
this.targetTab().style.display = "block";
_height = this.targetTab().offsetHeight;
this.targetTab().style.display = "none";
this.targetTab().style.visibility = "visible";
return _height;
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment