I have a little jquery that shows some hidden content when element is hovered. Currently it showing each el that is matched but I'd like the behavior to only effect the element that is being hovered. I think I need to add the keyword this in some way to let the dom know it should only show the element that is being hovered.
<li class="col-md-12">
<div class="col-md-2">
<a class="cbp-vm-image" href="#">
<img src="assets/images/stash/11.png">
</a>
</div>
<div class="col-md-10">
<h3 class="cbp-vm-title">Lorem ipsum dolor sit amet</h3>
<h5>by <b> Carrie_Strohl </b> - 3 weeks ago - 30,000 views</h5>
<div class="cbp-vm-details">
Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt.
</div>
</div>
$( ".cbp-vm-image" ).hover(function() {
var n = $(".cbp-vm-view-grid .col-md-10");
n.fadeToggle( 500 );
});