I'm wondering how I can fade in a css class with jquery. The effect I'm looking for is sort of like what you see here: https://squareup.com/
What I've tried so far is this:
$(document).ready(function() {
$('.mini-nav li').hover(function () {
$('.hover').fadeIn(slow);
};
});
I thought about the .addClass() method, but I'm not sure where to add it (or if that is the best thing to do).
EDIT: Here is a fiddle of something I've tried: http://jsfiddle.net/J93NR/1/