Click Arrow
Add bounce effect to anchor element after scrolling to it.
<a href="#test-2" class="anchor-scroll" data-class-to="#test-2" data-scroll-end="bounce">...</a>
Callback functions on scroll start and end.
$('.arrow-up').scrollAnchor({ scrollStart: function () { $(".popup").text("Scrolling..."); }, scrollEnd: function () { $(".popup").text("Done!"); } });