Hello.
I have a HTML like
<div class="a">
<div class="b">
something
</div>
<div class="c">
<div class="subC">
i want to access
</div>
</div>
</div>
and jquery like
$('.a').hover(function(){
$(this).children('.subC').fadeOut();
})
I Want to access the class "subC" but above is not working.
i also tried
$('.a').hover(function(){
$(this).children('.c .subC').fadeOut();
})
but this too is not working !
Whats the solution to this problem ! am i doing anything wrong ? please help