I'm not sure what are you trying to do but try:

$(this).children(".label").show(1000);

MaurĂ­cio



-----Mensagem Original----- De: "eXistent" <pirkl.lu...@gmail.com>
Para: "jQuery (English)" <jquery-en@googlegroups.com>
Enviada em: quinta-feira, 15 de janeiro de 2009 07:58
Assunto: [jQuery] Show element inside this



Hi,
is there some easy way to make something like this:

$(document).ready(function() {
$(".track").mouseover(function(){
$(".track .label").show(1000);
});
});

but only for each child element separately?
I mean something like this:

$(document).ready(function() {
$(".track").mouseover(function(){
$(this ".label").show(1000);
});
});

Thanks for answers and tips.

Reply via email to