I found many similar questions in the site, but nothing came close to my rescue.I am dynamically appending a div to an element and in this div I have mentioned opacity style attribute as below.
$('#cell').append('<div id="el_loading"
style="-ms-filter:\"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)\";
filter: alpha(opacity=50);
opacity:0.5;
background-color: #fbfbfb;
height: 100%;
width:100%;
position:relative
;z-index:9999;">
<div style="top: 74.2px; width: 91px;">
<img src="/myimage/loading.gif" title="Please Wait..." />
<span>
<b>Please wait ...</b>
</span>
</div>
</div>');
This is being done to blur the page when an ajax request is sent to the server.This piece of code is written in a javascript area and hence i am using inline style.Above style works fine in IE10 but not in IE8.
Please move your css scripts into your own css file.
For example:
your script like this:
Hope that helps.