Te conviene usar el metodo hover de jquery con el cual simplemente le pasas al elemento que funcion queres que haga cuando el mouse esta encima y que funcion con el mouse fuera x ejemplo:
Código Javascript
:
Ver original$(document).ready(function() {
$("#star").hover(
function() {
$(this).html('<img class="imgstar" src="images/<?php echo $star; ?>.png" />');
return false;
},
function() {
alert ('hola');
$(this).html('<img class="imgstar" src="images/<?php echo $star2; ?>.png" />');
return false;
}
);
}
La sintaxis de hover es: $.(elemento).hover(funcionMouseIn,funcionMouseOut) ;
Salu2