tiseza_oss_live/Content/assets/js/pages/helpdesk.js

7 lines
181 B
JavaScript
Raw Normal View History

2025-11-15 11:14:31 +00:00
// Scroll To Top
$(document).on('click', '.arrow', function(event) {
event.preventDefault();
var body = $("html, body");
body.stop().animate({scrollTop:0}, 500, 'swing');
});