Javascript : this

Fermé
Nicolas - 26 nov. 2010 à 10:26
 Nicolas - 26 nov. 2010 à 10:50
Bonjour,

je rencontre un petit problème tout bête, je souhaite récupéré la class d'un bouton au survol de la DIV qui la contient, en gros je veux faire ça :

$(document).ready(function(){
$(".ma_div").hover(
function (){
$(this".btn").show();
},
function (){
$(this+".btn").hide();
}
);
});

mais ça ne marche pas, alors comment écrire $(this".btn") ?

1 réponse

Bon j'ai trouvé solo en fait, la solution :
jQuery(this).children(".btn").show();
0