jQuery(document).ready(function ($) { $('.main-navigation').meanmenu(); $('.scroll-down').click(function (event) { event.preventDefault(); $('html, body').animate({ scrollTop: $('#scroll').offset().top }, 1000); }); $('#main-slider .owl-carousel').owlCarousel({ loop: true, nav: true, dots: true, navText: ['', ''], items: 1 }); //counters $('.count').counterUp({ delay: 10, time: 4000 }); //Click event to scroll to top $('.go-to-top-link').click(function(){ $('html, body').animate({scrollTop : 0},800); return false; }); });