jQuery Overlay not working in IE8

invisalignes

New Member
Appologies if this has been answered elsewhere, but I couldn't find anything. I am working with jQueryTools Overlay.Working fine in chrome, but in IE-8 i have this issue that my overlaying Div pops up like a normal div, at the top of my form.heres the html:\[code\]<div id="overlay" > <img src="http://www.sanbaldo.com/wordpress/wp-content/bigrotation2.gif" class="img-load" /> </div>\[/code\]heres the CSS:\[code\]#overlay{ background: #DCDCDC; border: 5px solid #666; display: none; height: 50%; left: 50%; opacity: 0.8; position: relative; top: 30%; width: 50%;}.img-load{ left: 50%; position: relative; top: 50%;}\[/code\]Jquery:\[code\]$(".button_small").click(function () { $("#overlay").overlay().load();});\[/code\]
 
Back
Top