$(function() { // Top drop-down list interaction if (screen.width > 768) { $('.header_top .navbar-nav .dropdown').on('mouseenter', function() { $(this).children('a').addClass("show"); $(this).children('a').css('color', '#ff4a00'); $(this).children('ul').addClass("show"); }).on('mouseleave', function() { $(this).children('a').removeClass("show"); $(this).children('a').css('color', ''); $(this).children('ul').removeClass("show"); }) } })