How to pop a small warning page that also blurs the background

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Darrell
    Confirmed User
    • Feb 2003
    • 803

    #1

    How to pop a small warning page that also blurs the background

    Hello, am hoping for some advice how to do this - I want to popup an entry warning page that also blurs the background and only shows in one specific country and doesn't affect SEO. Any ideas how that can be done?
  • Stephen
    Consigliere
    • Feb 2003
    • 1771

    #2
    Here's one method I just implemented:

    use CSS to specify div visibility: 1 div for warning, 1 for content

    use a cookie + conditional switch to decide if warning should be shown:

    if warning required (no cookie set, surfer from country x) show warning, then set cookie when surfer clicks "enter" > then cookie state decides whether or not to show the warning on revisit / reload. Set a session cookie that expires on browser close.

    I use jQuery to keep process smooth, animated and without page refresh.

    It is an interesting path to pursue and Google is your friend

    Comment

    • awxm
      Confirmed User
      • Aug 2009
      • 819

      #3
      SmokeyTheBear posted something like this a few months back.

      Found it.

      http://gfy.com/showthread.php?t=977792
      .

      Comment

      • Darrell
        Confirmed User
        • Feb 2003
        • 803

        #4
        Originally posted by Stephen
        Here's one method I just implemented:

        use CSS to specify div visibility: 1 div for warning, 1 for content

        use a cookie + conditional switch to decide if warning should be shown:

        if warning required (no cookie set, surfer from country x) show warning, then set cookie when surfer clicks "enter" > then cookie state decides whether or not to show the warning on revisit / reload. Set a session cookie that expires on browser close.

        I use jQuery to keep process smooth, animated and without page refresh.

        It is an interesting path to pursue and Google is your friend
        Thanks for the reply. That method seems to be exactly what I am looking for I've been searching google all day and haven't found anything like that. Is it possible to give me some more information on how to set it up as I'm not too technical? My icq is 57-zero-4429-eightyeight

        Comment

        • Darrell
          Confirmed User
          • Feb 2003
          • 803

          #5
          Originally posted by FruitPanda
          SmokeyTheBear posted something like this a few months back.

          Found it.

          http://gfy.com/showthread.php?t=977792
          Thanks for the link, going to try that out.

          Comment

          Working...