scrollup
scrollup copied to clipboard
Add an option to add discernible name
that is arial-labels="scroll up"
Agree with that.
I found no way to add accessibility tags, specifically those with "-" in their name, such as aria-label. Since the result is an "a" element, it's recommended to add ARIA attributes.
My workaround was adding jquery like this:
$("#scrollUp").attr('aria-label','Scroll to top');
but it'd be better to place it when scrollup js runs.
Hope it helps. Thank you!