laravelEcomm/public/Dashboard/js/demo.js
2024-07-12 12:51:02 +05:45

10 lines
225 B
JavaScript

(function($) {
'use strict';
$(function() {
$("#features-link").on("click", function() {
$('html, body').animate({
scrollTop: $("#features").offset().top
}, 1000);
});
});
})(jQuery);