Code Snippet


jQuery(document).ready(function() {jQuery('a#slider-continue').on('click', function(e) {// Prevent default anchor actione.preventDefault();// Animate scroll to main contentjQuery('html, body').stop().animate({scrollTop: jQuery('#container').css('top')}, 1500, 'easeInOutExpo');});});