Created
August 21, 2015 10:25
-
-
Save ABooooo/5699f167035c39a02e67 to your computer and use it in GitHub Desktop.
change style parameter on mouse over / out
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
$( "a" ).has( "img" ).mouseenter(function(){ | |
$(this).css("color", "#870036"); | |
}); | |
$( "a" ).has( "img" ).mouseleave(function(){ | |
$(this).css("color", "black"); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment