Spry: click to show details? JQuery?
I have an app which displays a spry dataset, like so:

Those cards are a spry region:
<div spry:region="pv1" spry:repeatchildren="pv1" class="badges">
<div class="badge">
<img src="images/{image}" alt=""/>
<div class="details">
<p class="name">{name}</p>
<p>Color: {color}</p>
<hr class="clrflt"/>
<p class="desc">{description}</p>
<p> Reference: <a href="{refLink}">{refName}</a></p>
</div>
</div>
My question is, I'd like to create another DIV that appears when one of the cards is clicked (or a view details button). I know how to do the hide and show with JQuery, but how could I get which card was clicked on, so my details DIV shows the correct record's data? Is this doable is Spry alone? I have had problems getting Spry items to cooperate with JQuery...
