Skip to content

Instantly share code, notes, and snippets.

@ABooooo
Created August 21, 2015 10:25
Show Gist options
  • Save ABooooo/5699f167035c39a02e67 to your computer and use it in GitHub Desktop.
Save ABooooo/5699f167035c39a02e67 to your computer and use it in GitHub Desktop.
change style parameter on mouse over / out
$( "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