$(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 }); $(".small-slider-wrapp.owl-carousel").owlCarousel({ responsive:true, responsiveRefreshRate: 200, responsiveBaseWidth: '.small-slider', pagination: false, items:5, itemsDesktopSmall : [640,4], itemsTablet: [540,3], itemsTabletSmall : [480,2], itemsMobile : [320,1], singleItem: false }); $('.popupcontent').on('scroll', function(e){ var top = $(this).scrollTop(); $(this).find('.close').css('top', top); }); var $owl_extra1 = $('#extraoptions1 .small-slider-wrapp'); var $owl_extra2 = $('#extraoptions2 .small-slider-wrapp'); $('.small-slider .swiper-button-prev').on('click', function(e){ e.preventDefault(); var id = $(this).parents('.small-slider').attr('id'); if( id === 'extraoptions1') { $owl_extra1.trigger('owl.prev'); } else { $owl_extra2.trigger('owl.prev'); } }); $('.small-slider .swiper-button-next').on('click', function(e){ e.preventDefault(); var id = $(this).parents('.small-slider').attr('id'); if( id === 'extraoptions1') { $owl_extra1.trigger('owl.next'); } else { $owl_extra2.trigger('owl.next'); } }); $('ul.tabs li').click(function(){ var tab_id = $(this).attr('data-tab'); $('ul.tabs li').removeClass('current'); $('.tab-content').removeClass('current'); $(this).addClass('current'); $("#"+tab_id).addClass('current'); }); $('.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'); } }); });