// *************************************************************************// // ! This is main JS file that contains custom scripts used in this template*/ // *************************************************************************// /** Navigation File 01. Carousel 02. Custom Select 03. Mobile Menu */ $( document ).ready(function() { "use strict"; // **********************************************************************// // 01. Carousel // **********************************************************************// $('.base-slider, .slider').owlCarousel({ loop: true, margin: 0, nav: true, navText: ["",""], dots: false, item: 1, responsive:{ 0:{ items:1 }, 600:{ items:1 }, 1000:{ items:1 } } }); $('.partner-slider').owlCarousel({ loop: true, margin: 0, nav: false, autoplay: true, dots: false, item: 5, responsive:{ 0:{ items:2 }, 600:{ items:3 }, 1000:{ items:5 } } }); // **********************************************************************// // 02. Custom Select // **********************************************************************// $('select').each(function(){ var $this = $(this), numberOfOptions = $(this).children('option').length; $this.addClass('select-hidden'); $this.wrap('
'); $this.after('
'); var $styledSelect = $this.next('div.select-styled'); $styledSelect.text($this.children('option').eq(0).text()); var $list = $('