I think you have a mistake inside your script. Check this: jsfiddle.net/Frv8G/1/
I changed “s-o” to “g-o”.
$("#containergames").mouseleave(function () {
$(".g-o").animate({
opacity: 0
}, function () {
$(".g-o").hide();
});
});
0
solved Link still clickable after .hide() [closed]