Contact us on 0800 123 4567 or [email protected]

Code Snippet


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

Design Style Switcher