Share Pastebin
Guest
Public paste!

Untitled

By: a guest | Mar 21st, 2010 | Syntax: None | Size: 0.28 KB | Hits: 146 | Expires: Never
Copy text to clipboard
  1. function backToTop() {
  2.         if (!document.getElementsByTagName) return;
  3.         var anchors = document.getElementsByTagName("a");
  4.         for (var i=0; i<anchors.length; i++) {
  5.                 var anchor = anchors[i];
  6.                 if (anchor.getAttribute("href") == "top")
  7.                 anchor.href = "#";
  8.         }
  9. }
  10. window.onload = backToTop;