laravelEcomm/public/Dashboard/js/demo.js

10 lines
225 B
JavaScript
Raw Normal View History

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