You can do it with jquery -
$(document).ready(function(){
$('.contentGruop li').hide();
$(document).on({
mouseenter: function () {
$('.contentGruop li').show();
},
mouseleave: function () {
$('.contentGruop li').hide();
}
}, ".AGreen");
});
source
share