Skip to main content

Bug Tracker

Side navigation

#4486 closed bug (invalid)

Opened April 03, 2009 09:38AM UTC

Closed December 02, 2010 08:07AM UTC

slideDown and fadeOut

Reported by: forcer Owned by: forcer
Priority: major Milestone: 1.4
Component: effects Version: 1.3.2
Keywords: Cc:
Blocked by: Blocking:
Description

I am having problem problem with fadeout effect in Internet Explorer.

I have a text link that fades out when clicked. However in IE7 it just dissapears. and when i click anywhere else in the window it appears again.

code used:

$(document).ready(function() {

$('#toggleButton').click(function () {

$('#toggleButton').fadeOut("slow");

});

});

html used:

<a href="javascript:void(0);" id="toggleButton">Click here to view more artwork!</a>

The slideDown effect also doesn't seem to work.

$(document).ready(function() {

$('#toggleSection').css("display","none");

$('#toggleButton').click(function() {

if ($('#toggleSection').is(":hidden"))

{

$('#toggleSection').slideDown("slow");

} else {

$('#toggleSection').slideUp("slow");

}

});

});

Both work great in Mozilla but not IE7

Attachments (0)
Change History (4)

Changed April 11, 2009 03:37PM UTC by dmethvin comment:1

component: unfilledfx

Changed October 29, 2010 05:15PM UTC by rwaldron comment:2

keywords: → needsreview
owner: → forcer
status: newpending

Please provide a reduced jsFiddle test case, thanks!

Additionally, test against the jQuery 0 GIT version to ensure the issue still exists.

Changed November 10, 2010 11:56PM UTC by snover comment:3

keywords: needsreview

Changed December 02, 2010 08:07AM UTC by trac-o-bot comment:4

resolution: → invalid
status: pendingclosed

Automatically closed due to 14 days of inactivity.