on hover display block css code example
Example 1: hover over something to make html visible
div {
display: none;
}
a:hover + div {
display: block;
}
Example 2: display none after hover
$('.info').hover(function() {
$(this).fadeTo(1,1);
},function() {
$(this).fadeTo(1,0);
});