I have looked up virtually every other question to this and none of the fixes have worked for me. I am trying to have a profile pic that will toggle the bio below it. Before I add the (this).next to my slideToggle event, it slides but it slides all instances of the class .bio. Adding the (this).next breaks the code. I have the latest jquery.js saved as jquery-1.8.2.js in my folder. Could it be a css issue? Any insight would be SOO helpful. Thank you.
<script>
$(document).ready(function() {
$('.bio').hide();
$('.toggle').click(function() {
$(this).next('.bio').slideToggle();
});
});
</script>
<div class="profile">
<div class="profilepic">
<a class='toggle' href="#"><img src="images/charles.jpg" width="100" height="100" alt="charles"/></a>
</div><!-- end of profilepic class -->
<div class="officerinfo">
<h4 class='toggle'>Dude McDudeson</h4>
<br>
<a href="mailto:duuuude@gmail.com">duuuude@gmail.com</a>
<h5><a href="positions.html">President</a>
<br>
<br>
</div><!-- end of officerinfo class -->
<div class="bio" style="display:none">
<p>description</p>
</div><!-- end of bio class -->
</div><!-- end of profile class -->
css
/* Profile */
.profile
{
position: relative;
padding-top:20px;
width: 550px;
height: 150px;
}
/* ProfilePic */
.profilepic
{
float: left;
width: 100px;
height: 100px;
}
/* Officer Info */
.officerinfo
{
width:420px;
float: right;
}
/* Bio */
.bio
{
width: 420px;
float: right;
}