I am using an ajax loader (like a please-wait .gif image) image for the ajax calls. Before some days it was working perfectly and showing in chrome.
I didn't see any problem with the image or we don't change it. It is showing correctly in IE, Mozilla and in other browsers but I am not getting why it is not showing in chrome.
I had looked at Ajax Loader Not Showing in Google Chrome but not getting any help.
The html mark-up is
<div id="divajaxProgress" class="progressouter" style="display: none;">
<div class="ProgressInner">
<img alt="" title="Please wait..." src="../Images/ajax-loader.gif" />
</div>
</div>
divajaxProgress will show up when an ajax call will be there, a simple example is page load. Here is the functions
function HideProgress() {
$("#divajaxProgress").hide();
}
function ShowProgress() {
if ($('#divajaxProgress').is(':visible') == false) {
$("#divajaxProgress").show();
}
}
You can see the image here
Please suggest me what is the problem here.