How to use Toggle when several div have the same class with jQuery? I want to show just one div on click.
JavaScript
$(".help_content").hide();
$(".help_target").click(function()
{
$('.help_content').toggle(); // I also tried with $(".help_content").show();
});
HTML
<div id="foo">
<p class="help_target">
<a href="#">Click</a>
</p>
</div>
<p class="help_content">Asia</p>
<div id="some">
<p class="help_target">
<a href="#">Click</a>
</p>
</div>
<p class="help_content">Africa</p>
I can't use next() since .help_content is not a descendant of .help_target. (I want to use .help_target in fieldsets and display .help_content out of fieldsets).
