Overlay Not Showing in IE8

Jigglypuff

New Member
I'm showing and hidding a div using its visibility in css. It works fine in every other browse except IE8 & 9 and I can quite figure out why. From looking at this, can anyone possibly give an answer?HTML\[code\]<div id="action-panel"> Show mne </div>\[/code\]CSS\[code\]#action-panel { position : fixed; height: 80%; width: 300px; background-color: #EEEEEE; right: 10px; visibility:hidden; display: block; top: 10%; overflow:scroll; padding: 10px; z-index: 1000; border-color: #000; border-width: 1px; border-style: groove; -webkit-border-radius: 10px; -moz-border-radius: 10px; border-radius: 10px;}\[/code\]And the javascript\[code\]$('#action-panel').css('visibility', 'visible');\[/code\]Seems like it should work unless I am missing something back
 
Back
Top