Bug Tracker

Modify

Ticket #4486 (closed bug: invalid)

Opened 4 years ago

Last modified 2 years ago

slideDown and fadeOut

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

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

Change History

comment:1 Changed 4 years ago by dmethvin

  • Component changed from unfilled to fx

comment:2 Changed 3 years ago by rwaldron

  • Keywords needsreview added
  • Owner set to forcer
  • Status changed from new to pending

Please provide a reduced jsFiddle test case, thanks!

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

comment:3 Changed 3 years ago by snover

  • Keywords needsreview removed

comment:4 Changed 2 years ago by trac-o-bot

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

Automatically closed due to 14 days of inactivity.

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.