I have a page that notifies users of Internet Explorer 8 and below that my site probably will have issues when viewed with IE, I’m using the HTTP redirect which is in the index.html page, so when they hit index, they go to the page “ie.html”. But then if they click “Continue anyway” how can I send them back to the index without having them redirected again?
I’ve seen on other sites they’ll do something like http://site.com/index.html?ignore_err
Is that what I need to do? If so, how?
Thanks so much.
I would set a cookie, so the opt-in persists (as long as the user has the cookie or it expires). I’m sure you’re not wanting to hammer your users with requests to update to a newer browser. 🙂
From: http://techpatterns.com/downloads/javascript_cookies.php
ie.html
Then, within your IE conditional, check that the cookie is not true before redirecting:
index.html
This way, you don’t have to put it in the GET string and maintain it for the user, although I suppose you could do that as a backup.