[jQuery] Re: Live Example Question

2007-05-10 Thread Matt Stith
You can right click and click View Source to see the source code of the page, just search around untill you find a div with the class of contentToChange, and inside of that, a 'p' with the class 'firstparagraph' On 5/10/07, c19h28o2 [EMAIL PROTECTED] wrote: Hi, On the jquery live examples

[jQuery] Re: Live Example Question

2007-05-10 Thread c19h28o2
Thanks, can you please explain the why the p.firstparagragh has :hidden beside it? it doesn't work for me but $(div.contentToChange p.firstparagraph).hide(slow); does? Thanks

[jQuery] Re: Live Example Question

2007-05-10 Thread Jeff L
basically it's saying to show it if it's hidden, or hide it if it's visible. see more info here: http://www.jquery.com/Selectors#Custom_Selectors_2 On 5/10/07, c19h28o2 [EMAIL PROTECTED] wrote: Thanks, can you please explain the why the p.firstparagragh has :hidden beside it? it doesn't

[jQuery] Re: Live Example Question

2007-05-10 Thread c19h28o2
Ahhh yes, i've got it working now. Thanks for your help