Skip to main content

Bug Tracker

Side navigation

#2423 closed bug (wontfix)

Opened February 27, 2008 09:56AM UTC

Closed March 10, 2008 04:43AM UTC

slideUp, slideDown, and height animation causes flickering in IE 7

Reported by: quuxman Owned by:
Priority: minor Milestone: 1.2.4
Component: effects Version: 1.2.3
Keywords: IE effects Cc:
Blocked by: Blocking:
Description

I've only experienced this in IE (I have version 7.0.6001.17128). In the following example, after the sample div has faded out and just before it fades in, it flickers briefly.

<script>

function toggle(e) { e.is(':visible') ? e.slideUp(1000) : e.slideDown(1000) }

</script>

<input value='slide toggle' type='button' onclick='toggle($("#jtest2"))'>

<div id='jtest2'>

here is a jquery test<br>

here is a jquery test<br>

here is a jquery test<br>

here is a jquery test<br>

here is a jquery test<br>

here is a jquery test<br>

here is a jquery test<br>

here is a jquery test<br>

</div>

Attachments (0)
Change History (1)

Changed March 10, 2008 04:43AM UTC by davidserduke comment:1

resolution: → wontfix
status: newclosed

Unfortunately, jQuery no longer supports fx calls in quirksmode. Try adding a valid document type to your code and it should fix the problem. Try putting this in your browser address bar while looking at the page and make sure it says "CSS1Compat" which verifies it is not in quirksmode.

javascript:alert(document.compatMode);

If you still find a problem and it alerts "CSS1Compat" then please reopen this ticket with a new test case.