Hi all,
I am setting my cookie when user click a certain link on my web page. I am using jQuery Cookie plugin developed by Klaus Hartl. To set the cookie value I do the following:
$.cookie("lanVal", "tv", {expires: 3});
But when testing the cookie functionality, I see that IE does not save the cookie properly. All other browsers retain the value and the cookie value is load next time the page is opened. In IE, I get null when I open the page. What extra settings am I missing here?