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.
|
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. |
|||||||||
|
|
It's a known bug (limitation) of IE. You could use javascript to solve it. Just preload image and change source ( |
|||||||||||||||||||
|
|
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:
and in your html:
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. |
|||||||||||||||||||||
|
|
old question, but posting this for fellow googlers: Spin.js DOES WORK for this use case: http://fgnass.github.com/spin.js/ |
|||||||||||||||
|
|
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). |
|||||||||||||||
|
|
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 HTML:
JavaScript:
This method works with IE7, IE8 and IE9 (althought for IE9 you could use |
|||||
|
|
|
|||
|
|
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):
[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. |
|||||
|
|
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.
Naturally, this relies on jQuery, jQueryUI and requires an animated GIF of some type ("/images/loading_gray.gif"). |
|||
|
|
|
In personal experience using spin.js fixed loads of problems. Recommend it to everyone with any spinner problems. |
|||
|
|
|
Jquery:
|
|||
|
|
|
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:
This worked well for me in all browsers! |
|||
|
|
|
Just had a similar issue. These worked perfectly for me.
Another idea was to use jQuery's .load(); to load and then prepend the image. Works in IE 7+ |
|||
|
|
|
Here's a jsFiddle that works just fine on form submit with method="post". The spinner is added on form submit event.
|
|||
|
|
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.