(function($) { "use strict"; $(document).on ('ready', function (){ /* START MENU-JS */ var $link = $(".smoothScroll"); $link.on('click', function (event) { if (this.hash !== "") { var hash = this.hash; $('html, body').animate({ scrollTop: $(hash).offset().top }, 800, function () { window.location.hash = hash; }); } }); $('li.menu-item-has-children').each(function(index, element) { $(this).append(''); }); $(document).on('click','li.menu-item-has-children .nav-dropdown',function(e) { $(this).parent('li.menu-item-has-children').find('ul.sub-menu').eq(0).toggleClass('show'); $(this).toggleClass('ti-angle-double-up').toggleClass('ti-angle-double-down'); }); //navbar-collapse collapse in /* END MENU-JS */ }); })(jQuery);