scroll - Stop Javascript .scrollBottom function -


my .scrollbottom button works, once auto scrolls bottom can't manually scroll because active , scrolling down. need scroll absolute bottom , stop?

javascript

var timeout;   function scrolltobottom() {     if (document.body.scrollbottom!=0 || document.documentelement.scrollbottom!=0){     window.scrollby(0,20);     timeout=settimeout('scrolltobottom()',10);     }   else cleartimeout(timeout); } 

html

<a href="#" onclick="scrolltobottom();return false">button</a> 


Comments

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -