Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|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 '12 at 13:26
Actually that is not true at all. Using a timeout to show the image on the onsubmit event works just fine with form POST. – pcguru Jan 24 at 8:27

13 Answers

up vote 9 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

share|improve this answer
   
+1 Nice pragmatic idea. – AnthonyWJones Apr 23 '09 at 7:13
1  
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/… – user527066 Jan 23 '11 at 1:31
2  
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 5 more comments

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:

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

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.

share|improve this answer
3  
3  
+1 for working code – Paperjam Jun 2 '10 at 19:43
4  
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
1  
-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 '12 at 12:58
1  
This worked for me using jQuery. The hack is pretty weird, I have to admit. This is how it worked in my example: code <div id="img_content"> <img id='aj_loader' src='assets/2631.gif' style="display:none;"/> </div> And then: code $("#img_content").html($("#img_content").html()); – misaizdaleka Mar 16 '12 at 14:16
show 7 more comments

old question, but posting this for fellow googlers:

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

share|improve this answer
4  
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 3 more comments

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).

share|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 '12 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 '12 at 13:25
1  
I'm experiencing it in IE9 – Ben Apr 6 '12 at 22:02
1  
And still in IE10 – DaRKoN_ Apr 4 at 2:24

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.

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

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

share|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

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.

share|improve this answer
1  
It does not work even in IE7 – Marco Demaio Feb 4 '12 at 11:24

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").

share|improve this answer

In personal experience using spin.js fixed loads of problems. Recommend it to everyone with any spinner problems.

share|improve this answer

Jquery:

$("#WhereYouWantTheImageToAppear").html('<img src="./Animated.gif" />');
share|improve this answer

I encountered this problem when trying to show a loading gif while a form submit was processing. It had an added layer of fun in that the same onsubmit had to run a validator to make sure the form was correct. Like everyone else (on every IE/gif form post on the internet) I couldn't get the loading spinner to "spin" in IE (and, in my case, validate/submit the form). While looking through advice on http://www.west-wind.com I found a post by ev13wt that suggested the problem was "... that IE doesn't render the image as animated cause it was invisible when it was rendered." That made sense. His solution:

Leave blank where the gif would go and use JavaScript to set the source in the onsubmit function - document.getElementById('loadingGif').src = "path to gif file".

Here's how I implemented it:

<script type="text/javascript">
    function validateForm(form) {

        if (isNotEmptyid(form.A)) {
            if (isLen4(form.B)) {        
                if (isNotEmptydt(form.C)) {
                    if (isNumber(form.D)) {        
                        if (isLen6(form.E)){
                            if (isNotEmptynum(form.F)) {
                                if (isLen5(form.G)){
                                    document.getElementById('tabs').style.display = "none";                
                                    document.getElementById('dvloader').style.display = "block";                
                                    document.getElementById('loadingGif').src = "/images/ajax-loader.gif"; 
                                    return true;
                                }
                            }
                        }
                    }
                }
            }
        }
        return false;   
    }               
</script>

<form name="payo" action="process" method="post" onsubmit="return validateForm(this)">
    <!-- FORM INPUTS... -->
    <input type="submit" name="submit" value=" Authorize ">

    <div style="display:none" id="dvloader">  
        <img id="loadingGif" src="" alt="Animated Image that appears during processing of document." />
        Working... this process may take several minutes.
    </div>

</form>

This worked well for me in all browsers!

share|improve this answer

Just had a similar issue. These worked perfectly for me.

$('#myElement').prepend('<img src="/path/to/img.gif" alt="My Gif" title="Loading" />');

$('<img src="/path/to/img.gif" alt="My Gif" title="Loading" />').prependTo('#myElement');

Another idea was to use jQuery's .load(); to load and then prepend the image.

Works in IE 7+

share|improve this answer

Here's a jsFiddle that works just fine on form submit with method="post". The spinner is added on form submit event.

$("form").bind("submit", onFormSubmit);

function onFormSubmit() {
    setTimeout(showSpinner, 1);
}

function showSpinner() {
    $("body").append($('<img id="spinner" src="spinner.gif" alt="Spinner" />'));
}

See jsFiddle code here

Test it in your IE browser here

share|improve this answer

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.