jQuery Snippets to Spruce Up Your Website
// Smooth scroll effect
$(document).ready(function() {
$('a[href*="#"]').on('click', function(e) {
e.preventDefault();
var target = $(this.hash);
$('html, body').animate({
scrollTop: target.offset().top
}, 1000, function() {
window.location.hash = target.attr('href');
});
});
});
Smooth scrolling between sections using jQuery. This script animation makes your content more interactive.