I'm trying to toggle some divs and at the same time set an "active" state on the links. Below is my code.
$(".product_buy").hide();
$(".product_geo").hide();
$("a.buy, a.geo").click(function()
{
$("#" + this.className + "_" + this.rel).slideToggle("fast");
$(this).toggleClass("item_active");
if (this.className == "geo")
{
$("#info_" + this.rel).slideToggle("fast");
}
return false;
});
<ul class="title_menu">
<li class="item"><a href="javascript:void(0);" class="geo" rel="blabla" title="Toggle geometry">Geometry</a></li>
<li class="item"><a href="javascript:void(0);" class="buy" rel="blabla" title="Toggle purchase options">Buy</a></li>
</ul>
<div class="product_buy" id="buy_blabla">
<div class="block">
<p>Buy bla bla</p>
</div>
</div>
<div class="product_geo" id="geo_blabla">
<img src="geo_blabla.jpg" title="Bla bla geometry" width="750" height="857"/>
</div>
<div class="prod_info" id="info_blabla">
<p>Info bla bla</p>
</div>
It toggles, but not all at the same time. It's ok if the two divs "buy" and "geo" is shown at the same time, but the "active" state of the link seems to mess things up.
I'm a noob, so feel free to mock me.
Edit: Solved it before I saw the answer from Nick, so his solution is probably better.
$(".product_buy").hide();
$(".product_geo").hide();
$("a.buy, a.geo").click(function()
{
var itemType = $(this).attr("rev");
var itemName = $(this).attr("rel");
$("#" + itemType + "_" + itemName).slideToggle("fast");
$(this).toggleClass("item_active");
if (itemType == "geo")
{
$("#info_" + itemName).slideToggle("fast");
}
return false;
});