Events
$(document).ready(function() { $('.next-button').click(function(event) { event.preventDefault(); // Prevent default link behavior $('html, body').animate({ scrollTop: 0 }, 500); // Animate the scroll to the top smoothly }); });