Has anyone else experienced the scenario described below?
For the sake of example, here's a very basic description:
#menuHolder
contains menu items (#itemA
, #itemB
, #itemC
,...#itemZ
)
In CSS, I have #menuHolder's
overflow set to hidden.
Using jQuery, I'm setting #menuHolder
to a minHeight of 0, then expanding it to a maxHeight of 300 when a specific element is moused over.
No problems in FF, Safari or Chrome...but here's what happens in IE:
For a brief moment, #itemA
, #itemB
, #itemC
,...#itemZ
appear on top of each other as the page is loading in IE. Then they disappear and behave as normal.
It's as if either overflow:hidden or minHeight are not being recognized until the page loads.
Any ideas?
Thanks B