vote up 4 vote down star
1

I have a simple unordered list that I want to show and hide on click using the jQuery slideUp and slideDown effect. Everything seems to work fine, however in IE6 the list will slide up, flicker for a split second, and then disappear.

Does anyone know of a fix for this?

Thanks!

flag

80% accept rate
People should stop supporting IE6 now – Ben Shelock Nov 24 at 20:22

5 Answers

vote up 0 vote down

I posted a quick fix solution over at http://blog.clintonbeattie.com/how-to-solve-the-jquery-flickering-content-problem/

In short, add overflow:hidden to the containing element that you are sliding in/out. Hope this helps!

link|flag
vote up 5 vote down

Apologies for the extra comment (I can't upvote or comment on Pavel's answer), but adding a DOCTYPE fixed this issue for me, and the slideUp/Down/Toggle effects now work correctly in IE7.

See A List Apart for more information on DOCTYPES, or you can try specifying the fairly lenient 4/Transitional:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
link|flag
Thanks so much! Works great now. Good 'ole StackOverflow. :-) – Ducain Jul 24 at 18:22
Amazing how a DOCTYPE can make such a huge difference – MunkiPhD Sep 4 at 17:44
vote up 1 vote down

Oli's fix only seems to apply to flickering backgrounds, which is not the case here.

Ryan McGeary's advice is solid, except for when the client/your boss absolutely demand that IE6 not act like it has fetal alcohol syndrome.

I found the solution here: Slide effect bugs in IE 6 and 7 since version 1.1.3

Added a doctype declaration to the top of the file (why wasn't it there before? who knows!) and the flicker vanished, never to be seen again.

link|flag
vote up 5 vote down

Just let IE6 flicker. I don't think it's worth it to invest time in a dying browser when your base functionality works well enough. If you're worried about flickering for accessibility reasons, just sniff for IE6 and replace the animation with a generic show() and hide() instead. I recommend avoiding complicated code for edge cases that don't matter.

link|flag
+1 as I agree in principle. Though in practice I will point out that's not 100% doable yet. Many enterprises (including my employer) require grade-A support on IE6. Depends on the audience, though thankfully that audience is shrinking. – Rex M Jul 21 at 4:46
I'm in the same boat regarding my company. Well over 3/4 of the company uses ie6. – Kevin Oct 23 at 13:45
If 75% of your company still uses IE6, maybe it's time to either reconsider your career or to just stop offering animation niceties. – Ryan McGeary Oct 23 at 17:09
vote up 7 vote down
$(document).ready(function() {
    // Fix background image caching problem
    if (jQuery.browser.msie) {
        try { 
            document.execCommand("BackgroundImageCache", false, true); 
        } catch(err) {}
    }
};

Apparently.

link|flag
You can bin the if-statement but that might hit the performance ever-so-slightly on non-IE6 browsers because they'll try to execute the code (and fail). – Oli Sep 21 '08 at 17:05
This is really helpful info, unfortunately it doesn't fix the issue that I'm having... I added the code and my list is still flickering. – go minimal Sep 21 '08 at 17:18
I wish I would have found this first, because it fixed my problem in ie6. Thanks – Kevin Oct 23 at 15:35
Holy crap, this is brilliant! That flickering has been bothering me for years! – Olly Hodgson Dec 4 at 10:55

Your Answer

Get an OpenID
or

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