Do not show this Popup Window again

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

    Do not show this Popup Window again

    My client is asking that once a viewer visits his website, the onLoad popup
    window not show up again.

    What's the best way to do this?

    Thanks, Marje


  • Lee

    #2
    Re: Do not show this Popup Window again

    gallery said:[color=blue]
    >
    >My client is asking that once a viewer visits his website, the onLoad popup
    >window not show up again.
    >
    >What's the best way to do this?[/color]

    How does one get to the point of having clients without knowing
    about cookies?

    Comment

    • Fabian

      #3
      Re: Do not show this Popup Window again

      gallery hu kiteb:
      [color=blue]
      > My client is asking that once a viewer visits his website, the onLoad
      > popup window not show up again.
      >
      > What's the best way to do this?[/color]

      Set a cookie. If the cookie can be found by the script, dont show the
      popup. This doesnt work if the visitor has disabled cookies.


      --
      --
      Fabian
      Visit my website often and for long periods!


      Comment

      • kaeli

        #4
        Re: Do not show this Popup Window again

        In article <mKCdnX_h5OB2hj 2iRVn-hQ@comcast.com> , mcannon_2000@ya hoo.com
        enlightened us with...[color=blue]
        > My client is asking that once a viewer visits his website, the onLoad popup
        > window not show up again.
        >
        > What's the best way to do this?
        >[/color]

        Not to use the damn things.
        Most of us block them anyhow. Either with popup blockers or by using
        Netscape/Mozilla and disabling them. They are horrible, horrible things.

        If he insists, cookies. Set one on first visit, then check before
        popping up window. However, many of us delete cookies daily, so that
        might not work too well for everyone.
        Then again, those of us who delete them tend to be the same people who
        disable popups to begin with.

        If cookies are not looking great, check IP address, write it to a
        database table, then check that before popping up window. Requires a
        database and server-side scripting.

        have fun. :)

        -------------------------------------------------
        ~kaeli~
        Jesus saves, Allah protects, and Cthulhu
        thinks you'd make a nice sandwich.


        -------------------------------------------------

        Comment

        • Thomas 'PointedEars' Lahn

          #5
          Re: Do not show this Popup Window again

          kaeli wrote:
          [color=blue]
          > If cookies are not looking great, check IP address, write it to a
          > database table, then check that before popping up window. Requires a
          > database and server-side scripting.[/color]

          And a lack of minimum clue about the workings of the Internet.
          IP addresses are either dynamic or static. If they are dynamic,
          the user gets the popup anyway since his IP address has most
          certainly changed on next logon. If they are static, in most
          cases you will get the static IP address of a HTTP proxy, thus
          other users of that proxy will not see the popup in the first
          place.

          Ceterum censeo: Onload popups are a Bad Thing, avoid them.


          PointedEars

          Comment

          Working...