Can anyone relate to the situation described below?
Here's a simple example:
#menuHolder
contains menu items like #itemA
, #itemB
, #itemC
,...#itemZ
In my CSS, I've set #menuHolder's
overflow property to hidden.
With jQuery, I'm adjusting the height of #menuHolder
from minHeight of 0 to a maxHeight of 300 when hovering over a specific element.
Everything works fine in FF, Safari, and Chrome. However, here's the issue in IE:
When the page loads in IE, there's a moment where #itemA
, #itemB
, #itemC
,...#itemZ
appear stacked on top of each other briefly. Then they disappear and behave normally.
It seems like either overflow:hidden or minHeight is not taking effect until the page fully loads.
Any suggestions?
Thank you B