Side navigation
#2912 closed bug (invalid)
Opened May 21, 2008 01:52PM UTC
Closed January 15, 2009 02:20AM UTC
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
Attachments (0)
Change History (3)
Changed May 21, 2008 01:54PM UTC by comment:1
Changed May 21, 2008 03:22PM UTC by comment:2
it seems that both are solved including the CSS files before the JS, solving other dimensions related issues (most on opera) too
Changed January 15, 2009 02:20AM UTC by comment:3
resolution: | → invalid |
---|---|
status: | new → closed |
For correct operation in Safari, define/include all css before script.
if the display:none is inline, the show() works as expected