$(document).ready(function() { $('.promotion__slider .featured__item, .categories__slider .featured__item, .featured__filter .featured__item ').hover( function() { // Agrega la clase 'show' al elemento actual $(this).find('.addFavorite').addClass('show'); $(this).find('.featured__info_change').addClass('show'); }, function() { // Remueve la clase 'show' del elemento actual $(this).find('.addFavorite').removeClass('show'); $(this).find('.featured__info_change').removeClass('show'); } ); });