vote up 0 vote down star

I have a page where I grab a value from the query string and add it into a cookie. The value is used for a couple of different items on the page. If the user returns to the page and the value isn't in the query string, the value is pulled back from the cookie.

I have tried doing my own cookie setting and retrieval in JavaScript as well as now using the jQuery Cookie plugin (http://plugins.jquery.com/project/Cookie). Everything works flawlessly...except when I test it in IE6. IE7 and 8 are fine but IE6 always returns a null value for the items when I attempt to retrieve them from the cookie.

I looked at the cookie information in Firefox and I'm not seeing anything beyond the 2 integer values that I set.

Any ideas on what could be causing this in IE6?

UPDATE: I took the test outside of my code into a basic html. Markup below. Same results where it returns null in IE6 (IETester).

<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
    <title>Untitled Page</title>
    <script type="text/javascript" src="Scripts/jquery-1.3.2.js"></script>
    <script type="text/javascript" src="Scripts/jquery.cookie.js"></script>
    <script type="text/javascript">
        $(document).ready(function()
        {
           var testId = GetQueryStringValue("test");

           if (testId == "")
           {
                testId = $.cookie("test");
                alert(testId);
           } 
           else
           {
                $.cookie("test", testId);
                alert("Test set");
           }

            document.write(testId);
        });

        function GetQueryStringValue(name)
        {    
            var regex = new RegExp("[?&]" + name + "(?:=([^&]*))?","i");   
            var tmpURL = window.location.href;    
            var results = regex.exec( tmpURL );    

            if (results == null)
            {
                return ""; 
            }
            else
            {
                return results[1];
            }
        }
    </script>
</head>
<body>

</body>
</html>
flag

i use the same lib, and i have no such problems on IE6. its not the lib, its some other code of yours. have you tried using firecookie ? – mkoryak Jul 17 at 14:36
It is working fine in Firefox and I can view the cookie in the Web Developer add on for Firefox. Is there a way to look at the cookie in IE6 other than doing an alert(document.cookie)? Doing that comes up as null in IE6. – JamesEggers Jul 17 at 14:47
2  
IETester has a known bug whereby cookies don't work on IE6: my-debugbar.com/forum/t109-Can't-access-cookes.html – NickFitz Jul 17 at 14:56
2  
Aagh! SO messed up the link... let's try my-debugbar.com/forum/… – NickFitz Jul 17 at 14:57

1 Answer

vote up 3 vote down check

Does the machine running IE 6 have its security settings set to reject cookies? Alternatively, if you are using one of the various techniques that supposedly allow you to run multiple versions of IE on the same machine, be aware that the results are not perfect, and often cause subtle aspects of the browser to break on one or more of the versions: for example, see this comment on Tredosoft's Multiple IE page about cookies failing in IE 6.

link|flag
The IETest bug with cookies you mentioned above was the cause. Thanks! – JamesEggers Jul 17 at 15:13

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.