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?
How to pop a small warning page that also blurs the background
Collapse
X
-
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
-
SmokeyTheBear posted something like this a few months back.
Found it.
http://gfy.com/showthread.php?t=977792.Comment
-
Thanks for the reply. That method seems to be exactly what I am looking forHere'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
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
-
Thanks for the link, going to try that out.SmokeyTheBear posted something like this a few months back.
Found it.
http://gfy.com/showthread.php?t=977792Comment

Comment