[jQuery] .animate({width:'show'},"2500") misbehaviour in FF,IE7 (width scales up to 1000)
Hello,
on the breadcrumb-element (bottom right) on http://www.pcwehle.de/demo/hm/index.htm
.animate({width:'show'},"2500") seems not to be able to read the
correct width of the li elements in FF2 and IE7 - IE6 works just fine.
What happens is that it scales the width of the elements up to about
1000 and then gets back to the actual width.
HTML-src:
<div id="brdcrmb">
<ul>
<li class="li-frst"><a href="index.php">Startseite</a></li>
<li><a href="">Konferenzräume und Veranstaltungen >> </a></li>
<li><span>Tagungsräume >> </span></li>
</ul>
</div>
the problematic jQuery (1.2.1-min) function:
$('div#brdcrmb>ul>li:gt(0)').animate({width:'show',opacity:'show'},
2500);
Intentionally, I wanted to use SlideOutLeft() but as the library to
get that working is a bit too heavy I decided for animate()
Someone sees the reason for that behaviour or even a solution? :)
Its my first own try on jQuery...