I'm trying to specify a span to show over a link when hovered. The code I have below does this, but it does so for all links containing a span, not just the hovered item. I was wondering how I can be more specific with the code. Any help is greatly appreciated.
$('ul#portfolio a').hover(function() {
$('ul#portfolio a span').fadeIn();}, function() { $('ul#portfolio a span').fadeOut();
});