hover none code example
Example 1: no hover effect css
pointer-events:none;
Example 2: display none after hover
$('.info').hover(function() {
$(this).fadeTo(1,1);
},function() {
$(this).fadeTo(1,0);
});
pointer-events:none;
$('.info').hover(function() {
$(this).fadeTo(1,1);
},function() {
$(this).fadeTo(1,0);
});