You should check out:
http://andylangton.co.uk/articles/javascript/jquery-show-hide-multiple-elements/
That should guide you through what you'll need to do to have multiple
show/hides on a page.
On Apr 13, 6:44 am, Daniel <daniel.evil...@gmail.com> wrote:
> I have multiple divs called article which have a show/hide link to
> toggle a div inside called articleBody. Problem is when I click the
> link all divs show/hide.
>
> The html structure is below:
>
> <div class="article">
> <p class="show"><a href="#">Hide [-]</a></p>
> <div class="articleBody"><!-- Stuff i need to hide on click</div>
> </div>
>
> Any idea how I can change the toggle the text in show as well as just
> closing that one instance of div article rather than every instance on
> the page?
>
> Thanks