Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
bar=$('.bar-text'); bar.on('hover', function() { $(this).css('background-color', 'black'); })
var bar = $('.bar-text'); bar.mouseenter(function() { $(this).css('background-color', 'black'); }) .mouseleave(function() { $(this).css('background-color', 'transparent'); });