Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

this page doesn't actually do anything. It loads two animated gifs from Akamai (one for the text, and one for the bar), and then uses some javascript to close the window.

If I had to guess, there's a login page. When you submit your login, this page pops up and displays while the login is processed.

source:

  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

  <html>

  <head>

    <title>Loading....</title>

  </head>

  <body>

    <p align="center">

      <img src="https://a248.e.akamai.net/6/248/3583/000/wellsoffice.wellsfargo.com/ceoportal/DocumentumRepository/content/images/signon/messaging.gif" width="300" height="30" border="0" alt="Loading Status" /><br />

      <img src="https://a248.e.akamai.net/6/248/3583/000/wellsoffice.wellsfargo.com/ceoportal/DocumentumRepository/content/images/signon/statusbar.gif" width="300" height="30" border="0" alt="Loading Status Bar" />

    </p>

    <script type="text/javascript">

      var selfClose = function() {

        self.close();

      };

      window.onload = function() {

        setTimeout(selfClose, 10000);

      };

      window.onblur = function() {

        selfClose();

      };

    </script>

  </body>

  </html>


My favorite part is the onblur function.




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: