RISOLTO CON:
codice:
<div class="<%=classes%>" >
<a href="scheda.asp?ida=<%=RSX("ID")%>&idc=<%=RSX("X_ID_COL")%>" style="text-decoration:none">
<div class="prova_png">
<div class="png_costo">
<div class="content_png_costo">
<span><%=ucase(RSX("COLORE"))%></span>
<%=ucase(RSX("NOME_ARTICOLO_1"))%>
<div class="bordato"></div>
<div class="fs21">€ <%=Formatprice(RSX("PREZZO_VEND"))%></div>
</div>
</div>
[img]<%=path_generale%>public/prodotti/<%=RSX([/img]-<%=RSX("X_ID_COL")%>-F-4.jpg" width="310px;" border="0" alt="" />
</div>
</a>
</div>
relativo Java:
codice:
$(function() {
$(".prova_png").hover(function () {
var $display = $(this).children(".png_costo").css('display');
if ($display=="none"){$(this).children(".png_costo").fadeIn('fast');} //fixed
},
function () {
$(this).children(".png_costo").fadeOut('fast');
});
});