$(function(){ $('.menubg').click(function() { $('.menubg').fadeOut(); $('.header ul').removeClass('opened'); }); $('.header .menu-button').click(function() { $('.menubg').fadeIn(); $('.header ul').addClass('opened'); }); $('.index-page-slider .owl-carousel').owlCarousel({ items:1, nav: true }); $('.index-games-slider .owl-carousel').owlCarousel({ autoWidth:true, items:10, loop: true, nav: true }); var i= 1; $('.owl-dot').each(function(){ $(this).find('span').html("0"+i); i++; }); adaptmenuflag = ""; $('.mobile_menu > li > a').click(function(e){ if(adaptmenuflag != this && $(this).parent().has( "ul" ).length){ e.preventDefault(); $(adaptmenuflag).next('ul').hide(); $(this).next('ul').show(); adaptmenuflag = this; } }); });