Bug Tracker

Modify

Ticket #5531 (closed bug: invalid)

Opened 4 years ago

Last modified 3 years ago

Toggle Flickers in IE8 for "slow" speed

Reported by: curious Owned by:
Priority: major Milestone: 1.4
Component: effects Version: 1.3.2
Keywords: toggle, hide, flicker Cc:
Blocking: Blocked by:

Description

In IE8, when toggling to hide the element, the background that was previously there flickers at the end of the slide if the speed is not set to "fast". If the speed is set to "fast" it does not flicker and looks perfect as intended. This flickering does not happen in Firefox.

I am a newbie and going through the tutorial "Tutorials:Getting Started with jQuery" and using the jQuery Starterkit. The CSS compatibility is "BackCompat". Here are some examples of what works and what does not work:

This flickers (default): $(document).ready(function() {

$('#faq').find('dd').hide().end().find('dt').click(function() {

$(this).next().slideToggle();

});

});

This flickers ("slow"): $(document).ready(function() {

$('#faq').find('dd').hide().end().find('dt').click(function() {

$(this).next().slideToggle("slow");

});

});

This works perfectly without any flicker ("fast"): $(document).ready(function() {

$('#faq').find('dd').hide().end().find('dt').click(function() {

$(this).next().slideToggle("fast");

});

});

Change History

comment:1 Changed 3 years ago by dmethvin

  • Status changed from new to closed
  • Resolution set to invalid

Can you discuss this on the forum to see if it's a bug?

Please follow the  bug reporting guidlines and use  jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.

View

Add a comment

Modify Ticket

Action
as closed
Author


E-mail address and user name can be saved in the Preferences.

 
Note: See TracTickets for help on using tickets.