Zoom sur une div au hover d'un bouton qui est dans autre div. Chercher le parent pour sélectionner la div.
jQuery(document).ready(function($){
jQuery(".btn-blue").hover(
function() {
jQuery(this).parent().siblings().find( ".img_comp" ).css("transform", "scale(1.03)");
}, function(){
jQuery(this).parent().siblings().find( ".img_comp" ).css("transform", "scale(1)");
});
});