10 lines
225 B
JavaScript
Raw Permalink Normal View History

2024-07-12 12:51:02 +05:45
(function($) {
'use strict';
$(function() {
$("#features-link").on("click", function() {
$('html, body').animate({
scrollTop: $("#features").offset().top
}, 1000);
});
});
})(jQuery);