0

I am trying to find out if a cookie exists or not, if it doesn't I want to create it. I am doing this in Internet Explorer and its stopping at if(readCookie(count) == null) of the code below.

if(readCookie("count") == null)
{
    createCookie("count", 0, 10);
}


function readCookie(name) 
{
    var nameEQ = name + "=";
    var ca = document.cookie.split(';');
    for(var i=0;i < ca.length;i++) 
    {
        var c = ca[i];
        while (c.charAt(0)==' ') c = c.substring(1,c.length);
        if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
    }
    return null;
}

What am I doing wrong here?

ewein
  • 2,523
  • 6
  • 33
  • 52

2 Answers2

1
if( $.cookie('query') == null ) { 
    createCookie("count", 0, 10);
}
Farhan Ahmad
  • 4,990
  • 5
  • 34
  • 67
  • Probably an old post now but (if I understand you correctly) why does it need a jQuery tag inparticular, the plugin allows users to use the $ symbol in place jQuery a bit like PrototypeJS's selectors. – DarkMantis Jun 20 '12 at 11:31
0

Try using undefined instead of null

See the following link:

http://jsfiddle.net/sssonline2/D38WM/1/

Tested on both IE and FireFox

Here's a Stack Overflow link for more info:

typeof !== "undefined" vs. != null

Howdy_McGee
  • 9,729
  • 25
  • 98
  • 172
shareef
  • 7,886
  • 12
  • 53
  • 80