For any kind of website, if content is more then the user has to scroll down to read it..
If again he wants to scroll up to the top using a single click will make the user feel good..
To make this just keep a div as "position : absolute" at right bottom side as "Scroll to Top".
So when clicked on it, just add this statement at the clicked event
window.scrollTo(0,0)
If again he wants to scroll up to the top using a single click will make the user feel good..
To make this just keep a div as "position : absolute" at right bottom side as "Scroll to Top".
So when clicked on it, just add this statement at the clicked event
window.scrollTo(0,0)
Comments
Post a Comment