Does anyone know a work around to make animated GIF's continue to be animated after you click a link or submit a form on the page your on in IE? This works fine in other browsers.

Thanks.

link|improve this question

1  
The only right answer on here is @AnthonyWJones. For POSTs, actual submits (not ajax) nothing works. – P.Brian.Mackey Jun 1 '11 at 18:24
@P.Brian.Mackey: TRUE! – Marco Demaio Feb 4 at 13:26
feedback

8 Answers

up vote 7 down vote accepted

It's a known bug (limitation) of IE. You could use javascript to solve it. Just preload image and change source (<img src="?">) of freezing image to that preloaded image on "onbeforeunload" action

link|improve this answer
+1 Nice pragmatic idea. – AnthonyWJones Apr 23 '09 at 7:13
Any code on how to implement this? Thanks – DotnetDude Oct 8 '09 at 19:28
1  
Did anyone get this working? I follow what the answer is but I cant get it to work in practice. – j.davies Dec 15 '09 at 0:53
Maybe you can give me a hand over here: stackoverflow.com/questions/4771115/… – Axel Jan 23 '11 at 1:31
1  
This answer is wrong, its has been proven over and over again and it doesn't work. Please check the answer by "waquin". – Jonathan Feb 21 '11 at 12:24
show 3 more comments
feedback

The accepted solution did not work for me.

After some more research I came across this workaround, and it actually does work.

Here is the gist of it:

<script>
function showProgress() {
    var pb = document.getElementById("progressBar");
    pb.innerHTML = '<img src="./progress-bar.gif" width="200" height ="40"/>';
    pb.style.display = '';
}
</script>

and in your html:

<input type="submit" value="Submit" onclick="showProgress()" />
<div id="progressBar" style="display: none;"><img src="./progress-bar.gif" width="200" height ="40"/></div>

So when the form is submitted the img tag is inserted which for some reason it is not effected by the ie animation issues.

Tested in Firefox, ie6, ie7 and ie8.

link|improve this answer
2  
2  
+1 for working code – Paperjam Jun 2 '10 at 19:43
2  
In your code you never actually perform a POST. Only the "onclick=" javascript call. I tried this with a POST as is expected when you click submit and it does not work. – P.Brian.Mackey Jun 1 '11 at 18:20
Unless you are returning false at the end of your onclick, the submit button will trigger a POST. That is what submit buttons do. – Frug Dec 14 '11 at 18:52
-1 This answer is WRONG too. It does not work in IE7 and IE8 the gif image FREZEES after form submission. – Marco Demaio Feb 4 at 12:58
show 2 more comments
feedback

old question, but posting this for fellow googlers:

Spin.js DOES WORK for this use case: http://fgnass.github.com/spin.js/

link|improve this answer
2  
You da man! This is the only thing that seems to keep 'spinning' in IE. :) – techie007 Sep 12 '11 at 3:46
Seems cool but doesn't work under IE7 for me – James McMahon Sep 12 '11 at 16:18
Correction, it works but stops animating right before the page loads. So if it's a short load it looks like the animation freezes like in the original issue. – James McMahon Sep 12 '11 at 17:12
I know for sure it works on IE8; I'll have to look at IE7. – Entendu Sep 12 '11 at 17:22
1  
Spot on, this works in ie9 – Rippo Sep 19 '11 at 9:09
show 2 more comments
feedback

IE assumes that the clicking of a link heralds a new navigation where the current page contents will be replaced. As part of the process for perparing for that it halts the code that animates the GIFs. I doubt there is anything you can do about it (unless you aren't actually navigating in which case use return false in the onclick event).

link|improve this answer
+1 - I tried both top answers. Neither works. I'm not going to make all my Form submits into ajax requests. – P.Brian.Mackey Jun 1 '11 at 18:26
+1 I agree, this is the only real right answer, except for spin.js and CodeMonkey workarounds. – Marco Demaio Feb 4 at 12:59
This IE issues was there in IE6 and still there in IE7/8. Does someone know if it's still there in IE9? – Marco Demaio Feb 4 at 13:25
I'm experiencing it in IE9 – Ben Apr 6 at 22:02
feedback

Here's what I did. All you have to to is to break up your GIF to say 10 images (in this case i started with 01.gif and ended with 10.gif) and specify the directory where you keep them.

HTML:

<div id="tester"></div>

JavaScript:

function pad2(number) {   
    return (number < 10 ? '0' : '') + number 
}
var 
    dirURL = 'path/to/your/images/folder',
    ajaxLoader = document.createElement('img');
ajaxLoader.className = 'ajax-image-loader';
jQuery(document).ready(function(){
    jQuery('#tester').append(ajaxLoader);
    set(0);
});
function set(i) {
    if (i > 10) i = 1;    
    img.src = dirURL + pad2(i) + '.gif';
    setTimeout(function() {
        set(++i);
    }, 100);    
}

This method works with IE7, IE8 and IE9 (althought for IE9 you could use spin.js). NOTE: I have not tested this in IE6 since I have no machine running a browser from the 60s, although the method is so simple it probably works even in IE6 and lower.

link|improve this answer
This workaround works, based on same principle of spin,js basically using a JS setTimeout to simulate a gif animation. – Marco Demaio Feb 4 at 12:54
feedback

Try this http://elliottback.com/wp/animated-gif-stops-javascript-click/

link|improve this answer
This is not the answer, this only works when using a link to invoke some javascript or ajax operation, this does not work when actually performing navigation or posting a form. – AnthonyWJones Apr 23 '09 at 7:12
feedback

Related to this I had to find a fix where animated gifs were used as a background image to ensure styling was kept to the stylesheet. A similar fix worked for me there too... my script went something like this (I'm using jQuery to make it easier to get the computed background style - how to do that without jQuery is a topic for another post):

var spinner = <give me a spinner element>

window.onbeforeunload = function() {
  bg_image = $(spinner).css('background-image');
  spinner.style.backgroundImage = 'none';
  spinner.style.backgroundImage = bg_image;
}

[EDIT] With a bit more testing I've just realised that this doesn't work with background images in IE8. I've been trying everything I can think of to get IE8 to render a gif animation wile loading a page, but it doesn't look possible at this time.

link|improve this answer
It does not work even in IE7 – Marco Demaio Feb 4 at 11:24
feedback

I realize that this is an old question and that by now the original posters have each found a solution that works for them, but I ran across this issue and found that VML tags do not fall victim to this IE bug. Animated GIFs still move during page unload when placed on the IE browser using VML tags.

Notice I detected VML first before making the decision to use VML tags so this is working in FireFox and other browsers using normal animated GIF behavior.

Here's how I solved this.

<input class="myExitButton" type="button" value="Click me"  />

<div class="loadingNextPage" style="display:none" >
    <span style="left:-24px; POSITION: relative; WIDTH: 48px; DISPLAY: inline-block; HEIGHT: 48px" class="spinnerImageVml"><?xml:namespace prefix="rvml" ns = "urn:schemas-microsoft-com:vml" /><rvml:group style="POSITION: absolute; WIDTH: 48px; HEIGHT: 48px; rotation: 1deg" class="rvml" coordsize = "47,47"><rvml:image style="POSITION: absolute; WIDTH: 48px; HEIGHT: 48px; TOP: 0px; LEFT: 0px" class="rvml" src="/images/loading_gray.gif" coordsize="21600,21600"></rvml:image></rvml:group></span>
    <img class="spinnerImage" src="/images/loading_gray.gif" alt="loading..." />
    <div>Just one moment while we access this information...</div>
</div>

<script language="javascript" type="text/javascript">
    window.LoadProgress = (function (progress, $) {

        var getdialogHeight = function (height) {
            var isIE = navigator.userAgent.toLowerCase().indexOf('msie') > -1;
            if (isIE) {
                return height + 'px';
            }
            return height;
        };

        var isVmlSupported = function () {
            var a = document.body.appendChild(document.createElement('div'));
            a.innerHTML = '<v:shape id="vml_flag1" adj="1" />';
            var b = a.firstChild;
            b.style.behavior = "url(#default#VML)";
            var supported = b ? typeof b.adj == "object" : true;
            a.parentNode.removeChild(a);
            return supported;
        };

        var showAnimationDuringPageUnload = function () {
            if (isVmlSupported()) {
                $(".loadingNextPage > .spinnerImage").hide();
            }
            else {
                $(".loadingNextPage > .spinnerImageVml").hide();
            }
        };

        var openLoadingMessage = function () {
            $(".loadingNextPage").dialog({
                modal: true,
                closeOnEscape: true,
                title: 'Please wait...',
                closeText: 'x',
                height: getdialogHeight(200),
                buttons: {
                    "Close": function () {
                        $(this).dialog("close");
                    }
                }
            });
        };

        $('.myExitButton').click(function () {
            openLoadingMessage();
            showAnimationDuringPageUnload();
            window.location.href = 'http://www.stackoverflow.com';
        });


        return progress;
    })(window.LoadProgress || {}, window.jQuery);
</script>

Naturally, this relies on jQuery, jQueryUI and requires an animated GIF of some type ("/images/loading_gray.gif").

link|improve this answer
feedback

protected by Will Jan 10 '11 at 15:57

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.