I have 3 divs that show 3 products:
<div class="produtosDestaqueBoxItem">
<div class="produtosDestaqueBoxItemCentralizar">
<img src="imagens/produto1 (1).jpg" height="131" width="120" alt="" />
</div>
</div>
<div class="produtosDestaqueBoxItem">
<div class="produtosDestaqueBoxItemCentralizar">
<img src="imagens/produto1 (2).jpg" height="131" width="120" alt="" />
</div>
</div>
<div class="produtosDestaqueBoxItem">
<div class="produtosDestaqueBoxItemCentralizar">
<img src="imagens/produto1 (3).jpg" height="131" width="120" alt="" />
</div>
</div>
And a div with display:none
that appears only when you hover over the produtosDestaqueBoxItem
div.
<div style="display:none" class="produtoDestaqueBox">teste</div>
I did this with Jquery:
$(".produtosDestaqueBoxItem").hover(function () {
$(this).hide();
$('.produtoDestaqueBox').show();
});
However, this only works on the first item. Would you use INDEX, ELEMENT?
Example: