I've been experimenting with using jQuery to create a fade effect on a div when hovered over. However, I'm encountering an issue where the anchor link within the div cannot be selected once it is shown.
$('#show').hover(function() {
$(this).stop(true).fadeTo("slow", 0);
}, function() {
$(this).stop(true).fadeTo("slow", 1);
});
It seems that the faded div is still overlapping the hidden div, causing the link to be unselectable.
For an example, you can check out this link: http://jsfiddle.net/BJwn7/81/
Does anyone know how I can resolve this issue and make the link selectable?