$(document).ready(function(){ (function () { $('.channels-container .owl-carousel, .services-single-programs.owl-carousel').each(function(){ var divs = $(this).find('.swiper-slide, .channel-single'); if(divs.length > 4) for(var i = 0; i < divs.length; i=i+2) { divs.slice(i, i+2).wrapAll("
"); } }); })(); $(".channels-container .owl-carousel, .services-single-programs.owl-carousel").owlCarousel({ responsive:true, responsiveRefreshRate: 200, responsiveBaseWidth: window, items:7, itemsDesktop : [1200,6], itemsDesktopSmall : [940,5], itemsTablet: [768,4], itemsTabletSmall : [640,3], itemsMobile: [430,2], singleItem: false }); $(".extraoptiuni .owl-carousel").owlCarousel({ responsive:true, responsiveRefreshRate: 200, items:4, itemsDesktop : [1024,3], itemsDesktopSmall : [992,3], itemsTablet: [720,2], itemsMobile : [480,1], singleItem: false }); $('.popupcontent').on('scroll', function(e){ var top = $(this).scrollTop(); $(this).find('.close').css('top', top); }); $('.openpopup').click(function(e){ e.preventDefault(); var href = $(this).attr('href'); $(href).fadeIn(); $('html').css('overflow','hidden'); }); $('.close').click(function(e){ e.preventDefault(); $(this).parent().fadeOut(); $('html').css('overflow','auto'); }); $('select').change(function() { var index = $(this).val(); if($(this).attr('name') == 'channelsCategory') { $('.swiper-channels-main').removeClass('active'); $('body').find('.swiper-channels-main[data-value="'+ index +'"]').addClass('active'); } else { $('.swiper-channels-popup').removeClass('active'); $('body').find('.swiper-channels-popup[data-value="'+ index +'"]').addClass('active'); } }); });