Files
nhgooi.nl/resources/assets/js/functions/scrollToTop.js
Jorit Tijsen 25b3d41bf1 Add scroll to top function
Add share buttons to news item
Add logo to footer
2024-03-20 15:13:59 +01:00

7 lines
156 B
JavaScript
Vendored

$(function () {
$('.scroll_top').click(function (e) {
e.preventDefault();
$("html, body").stop().animate({scrollTop: 0}, 500, 'swing');
});
});