I have a page on my site where I display one block of content & give the option for the user to click 'See more' to reveal more.
Here's my current demo.
HTML:
<p>
<a href="#" id="category36SeeMore">See more</a>
</p>
<div class="category36">
test
</div>
<div class="category36" style="display:none;">
test
</div>
<div class="category36" style="display:none;">
test
</div>
<div class="category36" style="display:none;">
test
</div>
Can someone give me some pointers in how to create a function for #category36SeeMore so it shows ALL divs with the class category36
?