Opened 14 years ago
Closed 12 years ago
#4486 closed bug (invalid)
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
Change History (4)
comment:1 Changed 14 years ago by
Component: | unfilled → fx |
---|
comment:2 Changed 12 years ago by
Keywords: | needsreview added |
---|---|
Owner: | set to forcer |
Status: | new → pending |
comment:3 Changed 12 years ago by
Keywords: | needsreview removed |
---|
comment:4 Changed 12 years ago by
Resolution: | → invalid |
---|---|
Status: | pending → closed |
Automatically closed due to 14 days of inactivity.
Please provide a reduced jsFiddle test case, thanks!
Additionally, test against the jQuery 0 GIT version to ensure the issue still exists.