On 8/13/07, Txt.Vaska <[EMAIL PROTECTED]> wrote:
>
>
> Is this right?
>
> I'm using show() but I can see it sliding in (animated) from upper
> left to lower right. I'd like it to simply show the layer.
>
> $("li#up" + last).show("fast");
>
> Am I missing something completely blatant here?
>
> ;)
You want this:
$("li#up" + last).show(); // <---- don't pass an argument for show
Joel Birch

