.next alternative?

.next alternative?

Im trying to make this grab the Next Element with the right name, Even if there is some other element between it..

$(".toggle").click(function() {

  $(this).next('.contentToggle').toggle();

});



This Works
<a class="toggle">toggle</a>
<div class="contentToggle">this here is content</div>


But this doesnt
<a class="toggle">toggle</a>
<br />
<div class="contentToggle">this here is content</div>