I've searched and searched online, but haven't found a solution. I want a specific section of my webpage to gradually appear when I hover over it.
Below is the CSS code I'm using:
.status .admin {
display: none;
}
.status.hover .admin {
display: inline;
}
And here's the CoffeeScript code I'm using:
$('.status').hover (event) ->
$(this).toggleClass("hover")