how to Scroll by javascript to footer of page ?
Aug 09
to Scroll to footer of page on javascript
write
1 2 3 4 5 6 7 | <script language="JavaScript"> function getClientHeight() { return document.compatMode=='CSS1Compat' && !window.opera?document.documentElement.clientHeight:document.body.clientHeight; } window.scrollBy(0,-getClientHeight()); </script> |