Advertisement
Ditasaur

Back to top button

Jun 9th, 2012
5,920
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. <script type="text/javascript"
  2. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.3/jquery.min.js">
  3. </script>
  4. <script type="text/javascript" language="javascript">
  5. $(function () {
  6. $('#scrlBotm').click(function () {
  7. $('html, body').animate({
  8. scrollTop: $(document).height()
  9. },
  10. 1500);
  11. return false;
  12. });
  13.  
  14. $('#scrlTop').click(function () {
  15. $('html, body').animate({
  16. scrollTop: '0px'
  17. },
  18. 1500);
  19. return false;
  20. });
  21. });
  22. </script>
  23.  
  24.  
  25. _________________________________________________________________________________________________________
  26.  
  27. <a id="scrlTop" title="back to top" href="#" style="position: fixed; bottom: 5px; right: 5px;"><font size="7px">▲</font></a>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement