I have two div's, the one that I will be clicking is "InterestsHeader". The one that I want to toggle is "Interests"
This code doesn't seem to work, I'm sure that it is to do with my div - InterestsHeader but can't spot anything.
$(".InterestsHeader").click(function() {
$(".Interests").toggle("fast");
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<div class="InterestsHeader">
<headerdivtext>▼ Personal Information</headerdivtext>
</div>
<div class="Interests">
<b>Test header</b>
<br />
<p>
test div stuff
</p>
<table>
<tr>
<td>
test
</td>
<td>
test
</td>
<td>
test
</td>
<td>
test
</td>
</tr>
<tr>
<td>
test
</td>
<td>
test
</td>
<td>
test
</td>
<td>
test
</td>
</tr>
</table>
</div>