Skip to content

Instantly share code, notes, and snippets.

@jpcontrerasv
Created July 30, 2014 14:53
Show Gist options
  • Save jpcontrerasv/edf4e9d80684ec7eeb38 to your computer and use it in GitHub Desktop.
Save jpcontrerasv/edf4e9d80684ec7eeb38 to your computer and use it in GitHub Desktop.
Usar children del parent
$(".item-servicio").mouseover(function(event){
$(this).children('.color-falso').fadeOut('fast');
$('.color-falso').addClass('oculto');
});
$(".item-servicio").mouseleave(function(event){
$(this).children('.color-falso').fadeIn('fast');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment