Looking for a return to top of page button

MIKE KAZ Posted in Component Development 5 years ago

when scrolling down the newsfeed there's no return to top of feed you have to scroll back up maually

Replies
Indonesian Arsalan Shah Replied 5 years ago

Tried to fix the parsing of code in forum , i hope it works now!

us Rishi B Replied 5 years ago

evidently the forum didn't like my use of tags (even after using the "code" option in tinymce), so in case you can't tell which tags i was trying to make, this stack overflow post should explain what you need to do: https://stackoverflow.com/questions/11750862/create-a-link-to-the-top-of-a-web-page-without-using-anchors

us Rishi B Replied 5 years ago

according to the HTML5 spec (https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#attr-href) you can use the special anchors either # or #top to return to the top of the page with a link. so just create a link of the form <a href="#top">Scroll to Top</a> and maybe put it next to the Like button on your posts or some where like that.