Created
July 30, 2014 14:53
-
-
Save jpcontrerasv/edf4e9d80684ec7eeb38 to your computer and use it in GitHub Desktop.
Usar children del parent
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(".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