(function($) { "use strict"; //------------------------------------------ //slider //------------------------------------------ jQuery(document).ready(function() { jQuery("#businessup-slider").owlCarousel({ navigation : true, // Show next and prev buttons slideSpeed : 200, pagination : true, paginationSpeed : 400, singleItem:true, video:true, autoPlay : true, transitionStyle : "fade", navigationText: [ "", "" ] }); /* ================================= === SEARCH DROPDOWN ==== =================================== */ jQuery(".navbar-right li.ta-search-box").on({ mouseenter: function () { $(this).addClass('open'); }, mouseleave: function () { $(this).removeClass('open'); } }); }); })(jQuery);