Opened 15 years ago
Closed 14 years ago
#2912 closed bug (invalid)
show()/fadein() broken in safari 3
Reported by: | balliano | Owned by: | |
---|---|---|---|
Priority: | major | Milestone: | 1.2.4 |
Component: | core | Version: | 1.2.3 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
this bug is related to 1.2.5
i've a <div class="someclass">some content</div>
where (in an external css)
.someclass {
display: none;
}
and this jquery code (run onready): $('myclass') .fadeIn('normal');
and it's working in all browsers except safari 3 (it worked in 1.2.3)
it seems that on safari css are applied after the ready function has run
Change History (3)
comment:1 Changed 15 years ago by
comment:2 Changed 15 years ago by
it seems that both are solved including the CSS files before the JS, solving other dimensions related issues (most on opera) too
comment:3 Changed 14 years ago by
Resolution: | → invalid |
---|---|
Status: | new → closed |
For correct operation in Safari, define/include all css before script.
Note: See
TracTickets for help on using
tickets.
if the display:none is inline, the show() works as expected