hello
in my aspx web application, I have a page where I make a big search and show a popup expected to work well in internet explorer 8,9,10 but not IE11,
International fine browser, which can be ..
html code:
<div id="pnlPopup" class="PrProgress" style="display: none;">
<div id="innerPopup" class="PrContainer">
<div class="PrHeader">
Cargando, por favor espere...</div>
<div class="PrBody">
<img src="<%=ResolveClientUrl("~/Resources/Images/activity.gif")%>" alt="Cargando..."/>
</div>
</div>
</div>
jscript code:
function applicationLoadHandler() {
/// <summary>Raised after all scripts have been loaded and the objects in the application have been created and initialized.</summary>
};
function applicationUnloadHandler() ...
Go to the complete details ...