showing results for - "display none after hover"
Mariana
20 Jan 2019
1$('.info').hover(function() {
2    $(this).fadeTo(1,1);
3},function() {
4    $(this).fadeTo(1,0);
5});