so I usually don't have any problems with this type of thing since I usually tend NOT to have any redirection issues since most of the work I do is only in one language, but this is driving me INSANE, so I was hoping maybe someone could help me out here
JavaScript:
and here's the HTMLCode:function english() { setCookie("clang","E",360); window.location="en/home.html"; } function francais() { setCookie("clang","F",360); window.location="fr/home.html"; }
and here's what's SUPPOSED to happen:Code:<a href="en/home.html" name="english" onclick="english()"> Enter </a> | <a href="fr/home.html" name="francais" onclick="francais()"> Entrer </a>
When the user clicks on the first link to visit the website in English, it should create the cookie [the getCookie and setCookie functions ARE created...] so that on the next visit, the user is automatically redirected to the English home page.
What am I doing wrong, here?


Reply With Quote

Bookmarks