Tienes que poner:
Código Javascript
:
Ver original$(function(){
$(".user").hover(function(){
$(this).next("img").show();
},
function(){
$(this).next("img").hide();
}
);
});
ó
Código Javascript
:
Ver original$(document).ready(function(){
$(".user").hover(function(){
$(this).next("img").show();
},
function(){
$(this).next("img").hide();
}
);
});
Ambas formas sirven para que el javascript no se ejecute hasta que el DOM se haya cargado del todo, por que en caso contrario, al ejecutar el código javascript en el head no está creado el enlace con class user todavía.