$(document).ready(function(){ $(".liste1produit .h2,.liste1produit .imageHover").hide(); $(".liste1produit").hover(function(){ $(this).css("background","none"); if($.browser.msie){ $(this).children("h2").show(); $(this).children(".imageHover").fadeIn(); }else{ $(this).children("h2,.imageHover").fadeIn(); } }, function() { if($.browser.msie){ $(this).children("h2").hide(); $(this).children(".imageHover").fadeOut(); }else{ $(this).children("h2,.imageHover").fadeOut(); } }); });