Opened 11 years ago
Closed 11 years ago
#8350 closed bug (notabug)
.fadeIn not applied to elements with style of position:absolute
Reported by: | DBConner | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | 1.9.0 |
Component: | ui.core | Version: | 1.8.20 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
$(document).ready(function () {
$("body").css("display", "none"); $("body").fadeIn(4000);
});
Works fine:
<asp:Panel ID="Panel1" runat="server" BackColor="#6699FF" Height="229px" Width="517px"
style="margin-bottom: 11px" />
transition not applied:
<asp:Panel ID="Panel3" runat="server" BackColor="#0000dc"
style="position:absolute; left:449px; top:36px; height: 391px; width: 147px;" />
Using IE 9
Thanks!
Note: See
TracTickets for help on using
tickets.
.fadeIn()
is part of jQuery core. When reporting the bug to the proper bug tracker, make sure to provide a reduced test case using jsFiddle or jsbin as mentioned in the red box.