[jQuery] Documentation in non greek?
Hi again,
I have tried to follow this what you guys have written butt now it is even
more in greek.
First of all is there some kind of wiki or documentation for us NON
programmers?
Second I am still having problems with the dubble click issue..
<code>
<script type="text/javascript">
$(document).ready(function(){
$("a.expand").toggle(function(){
$(".expandme",this.parentNode).slideUp("slow");
},function(){
$(".expandme",this.parentNode).slideDown("slow");
});
});
</script>
<body>
<div>
Some text goes in here
<p class="expandme">Lots of text
<a class="expand">More info>></a>
</div>
<div>
Some text goes in here
<p class="expandme">Lots of text
<a class="expand">More info>></a>
</div>
<div>
Some text goes in here
<p class="expandme">Lots of text
<a class="expand">More info>></a>
</div>
</body>
</html>
</code>
And in stylesheet I have what Klaus wrote:
<code>
.expandme {
display: none;
}
</code>
Also instead of writeing everything in the html document, is is possible to
write everything in an external file like somefile.js? Just to keep it nice
and tidy :) And do not laugh becuase I am a total n00b.
Take care all
>From: "Sam Collett" <sam.collett@gmail.com>
>Reply-To: "jQuery Discussion." <discuss@jquery.com>
>To: "jQuery Discussion." <discuss@jquery.com>
>Subject: Re: [jQuery] Documentation in non greek?
>Date: Fri, 23 Jun 2006 15:52:07 +0100
>
>Yes, because you only have to wait for head to load, not the whole
>page. So much quicker. I think it will run before jquery.js has been
>downloaded as well (not on a slow enough connection to test that).
>
>On 23/06/06, Klaus Hartl <klaus.hartl@stilbuero.de> wrote:
> > ah, very smart! that way it is even faster than hiding all on
> > document.ready I assume?
> >
> >
> >
> > Sam Collett schrieb:
> > > On 23/06/06, Klaus Hartl <klaus.hartl@stilbuero.de>