$item=$('.shopClass_item');
$item.on('mouseover', function(event) {
event.preventDefault();
/* Act on the event */
$(this).css('background-color', '#FFF');
$(this).find('a').css('color', '#000');
$(this).children('dt').css('background', 'none');
});
$item.on('mouseover', function(event) {
event.preventDefault();
/* Act on the event */
$(this).css('background-color', '#FFF');
$(this).find('a').css('color', '#000');
$(this).children('dt').css('background', 'none');
});
2016-12-14