(function ($) { "use strict"; /* ---------------------------------------------------- 3- Smooth Scrolling Using Navigation Menu. ------------------------------------------------------- */ $('.nav-scroll a[href*="#"]').on('click', function (e) { $('html,body').animate({ scrollTop: $($(this).attr('href')).offset().top - 0 }, 500); e.preventDefault(); }); })(jQuery);