Trying to get the div with class sbox to slide up and down based on the stoggle that has been clicked. Can't figure this out. (I have hundreds of these so I'd like to set up something generic instead of multiple different classes.)
$(".stoggle").click(function () {
$(this).slideToggle("fast");
});
<div class="wrapper">
<a class="stoggle" href="#">Read Bio</a>
<div class="sbox" style="display:none;">
Cras porta orci blandit at magna.
</div>
</div>
<div class="wrapper">
<a class="stoggle" href="#">Read Bio</a>
<div class="sbox" style="display:none;">
Lorem Ipsum
</div>
</div>