This is the HTML code:
<div id="opac">
<ul id="nav" style="font-size:75%" >
<li><a href="javascript:void(0)">Menu</a>
<ul>
<li><a href="javascript:void(0)" id="BGSRU01">BGSRU01</a></li>
<li><a href="javascript:void(0)" id="BGSRU02">BGSRU02</a></li>
<li><a href="javascript:void(0)" id="BMSRU06">BMSRU06</a></li>
</ul>
</li>
</ul>
</div>
<div id="display"></div>
This is Javscript script code calling the css properties:
<script>
$(document).ready(function(){
function click_function(){
var ajax_load = "<img id='loading' src='loader.gif' alt='loading...' />";
$("#display").html(ajax_load)
$("#opac").css({"opacity":"0.5"});
$("li").css({"pointer-events":"none"});
$("ul").css({"pointer-events":"none"});
}
});
</script>
Onclick of the button the indicator image will load and the menu ul and submenu li will kept the 'opacity'-'0.5' so that it becomes blur and 'pointer-events' as 'none' so that the user cant do any action this works in the chrome and mozilla but in the IE10 is not working
The user can do actions on the menu and submenu in IE10, but in chrome and mozilla works fine.
pleas suggest me how to make work in IE10