I have a CSS code snippet that fades in an image upon hover:
#social-links a:hover span { background: url("/images/hover-light.jpg") no-repeat scroll -4px 42px transparent; }
It's working perfectly, but now I want to enhance it with a jQuery fade-in effect. Since there are multiple spans
, I assume I need to use the identifier this
, but it has been a while since I've used jQuery and I can't quite remember how to do it.