Skip to content
On this page

Check Wayback Machine of current page

js
javascript: (function () {
  if (location.href.indexOf('http') != 0) {
    input = prompt('URL:', 'http://');
    if (input != null) {
      location.href = 'http://web.archive.org/web/*/' + input;
    }
  } else {
    location.href = 'http://web.archive.org/web/*/' + location.href;
  }
})();
1
2
3
4
5
6
7
8
9
10

References

The code above was copied from the following page: