username, password, and hotmail?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Bill H

    username, password, and hotmail?

    Hi all!

    I have a script that collects a username and password which doesn't
    seem to work if the user is a hotmail/msn frame.

    When they get a message on the system a notification is sent to them
    with a link to the site, and again, that link doesn't work as it
    should - unfortunately a lot of the users use hotmail.

    What's the problem? What do I need to do?

    TIA!

  • anon

    #2
    Re: username, password, and hotmail?

    Bill H wrote...
    [color=blue]
    > Hi all!
    >
    > I have a script that collects a username and password which doesn't
    > seem to work if the user is a hotmail/msn frame.
    >
    > When they get a message on the system a notification is sent to them
    > with a link to the site, and again, that link doesn't work as it
    > should - unfortunately a lot of the users use hotmail.
    >
    > What's the problem? What do I need to do?
    >[/color]


    This works for me:

    <script language="JavaS cript" type="text/javascript">
    <!--
    setTimeout ("LoseTheFrame( )", 1000);
    function LoseTheFrame() {
    if (self.parent.fr ames.length != 0)
    self.parent.loc ation=document. location;
    }
    // -->
    </script>



    Comment

    • Bill H

      #3
      Re: username, password, and hotmail?

      On Sat, 24 Apr 2004 15:02:10 +0000 (UTC), anon <me@privacy.net > wrote:
      [color=blue]
      >Bill H wrote...
      >[color=green]
      >> Hi all!
      >>
      >> I have a script that collects a username and password which doesn't
      >> seem to work if the user is a hotmail/msn frame.
      >>
      >> When they get a message on the system a notification is sent to them
      >> with a link to the site, and again, that link doesn't work as it
      >> should - unfortunately a lot of the users use hotmail.
      >>
      >> What's the problem? What do I need to do?
      >>[/color]
      >
      >
      >This works for me:
      >
      > <script language="JavaS cript" type="text/javascript">
      > <!--
      > setTimeout ("LoseTheFrame( )", 1000);
      > function LoseTheFrame() {
      > if (self.parent.fr ames.length != 0)
      > self.parent.loc ation=document. location;
      > }
      > // -->
      > </script>
      >
      >[/color]

      Works great (you know that)! ;)

      I would have been happy with a push in the right direction, a snippet
      is even better! Thank you!

      Comment

      Working...