Need to find height of hidden div on page (set to display:none)

You need to make element’s parent visible for that one very short moment while you’re getting element’s dimensions. In a generic solution, all ancestors are usually traversed and are made visible. Then their display values are set back to original ones. There are performance concerns of course. We considered this approach in Prototype.js implementation but … Read more

tech