Internet Explorer is not saving cookie in jquery plugin
This apparently alerts the string
$.cookie('test', 'cookie saved', {
expires : 30
});
alert($.cookie('test'))
But next time the page is opened this is undefined
alert($.cookie('test'))
Have tried to set the expires option to 999999999 and completely removed it.. Same result.. Cookie not saved... The string is alerted right after the cookie is set but next time it is undefined