[jQuery] Documentation in non greek?

[jQuery] Documentation in non greek?

Greetings Sean,
Kill you? No way it works perfectly and even if it didn't I am just happy
that someone took his time to help a lost soul.
I am still confused though :) What I am trying to achive is that

is
hidden on page reaload as default and not expanded.
Is this possible?
Take care
>From: sunsean <littlecooldude@gmail.com>
>Reply-To: "jQuery Discussion." <discuss@jquery.com>
>To: "jQuery Discussion." <discuss@jquery.com>
>Subject: Re: [jQuery] Documentation in non greek?
>Date: Thu, 22 Jun 2006 15:46:49 -0500
>
>Hi there il Luminate,
>
>Try using this:
><div>
><a class="expand">Expand Text</a>
><p class="expandme">Lots of text















></div>
>
>$(document).ready(function(){
> $("a.expand").toggle(function(){
> $(".expandme",this.parentNode).slideUp("slow");
> },function(){
> $(".expandme",this.parentNode).slideDown("slow");
> });
>});
>
>This code will expand the next all the expandme inside the <div>,
>which should solve your problem. (I didn't actually test the code, so
>don't kill me if I madea typo)
>
>~Sean
>
>On 6/22/06, il Luminate <il_luminate@hotmail.com>