I have a div slide down when you click the link
<a href="#" id="related-courses">Related Courses</a>
<div id="related-courses-section">
<p>Content</p>
</div>
$('#related-courses').click(function() {
$("#related-courses-section").slideToggle(100);
});
CSS set to display:none; for #related-courses-section (to hide it by default)
It will display the div w/ the content within it, but it brings me to the top of the page after clicking the link, why would it do that?