Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Please take a look at this fiddle: Jsfiddle

$(document).ready(function() {

    var cookie = $.cookie('myDemoCookie');

    // If the cookie has been set in a previous page load, show it in the div directly:
    if (cookie){
        var values = $.parseJSON(cookie);
        var li;
        for (var v in values) {
            li = $('<li><a href="' + values[v]+ '">' + values[v] + '</a></li>');
            $('.jq-text').append(li).show();
        }
    }

    $('.fields a').click(function(e) {
        e.preventDefault();
        var text = $('#inputBox').val();
        var values = $.parseJSON($.cookie('myDemoCookie')) || [];

        values.push(text);

        $.cookie('myDemoCookie',JSON.stringify(values),{expires: 7, path: '/' });
        $(".jq-text").append('<li><a href="' + text + '">' + text + '</a></li>');
    });

    $('#form1').submit(function(e){ e.preventDefault(); })

    $('.jq-text').on('click', 'li', function(e) {
        e.preventDefault();
        var values2 = [];

        $(this).remove();
        $(".jq-text li").each(function(i, item) {

            values2.push($(item).text());
        });
        $.cookie('myDemoCookie', JSON.stringify(values2), { expires: 7 });
    });
});

If you put something in the input and click save a list wil be created and stored with cookie. The problem is that the latest version of firefox on my xp system does not hold the cookie. Which is weird because at work I also have the latest version of Firefox on xp, but over there verything works fine.

Im kinda troubled about this because I did not play with the settings, so this means that other people(/visitors) which have the same version could experience the same thing. What could be the cause of this 'strange' behavior?

share|improve this question
It must be something to do with the cookie settings of the browser. The above mention fiddle works as intended. Did you try with a firefox settings reset? – Tariqulazam Nov 15 '12 at 20:15
@Tariqulazam That is the weird thing, I did not do anything with the settings. I use Chrome, I just have firefox for testing purposes. – Youss Nov 15 '12 at 20:17
Oke, I just looked at the settings and it seems that I had "dont remeber history" in the settings. Is this the default settings for Firefox, because it is a big problem if it is... – Youss Nov 15 '12 at 20:23
1  
The default setting is 'Remember History'. – Tariqulazam Nov 15 '12 at 20:26
@Tariqulazam Thanks:) – Youss Nov 15 '12 at 20:40
show 1 more comment

1 Answer

I had this problem also. My solution was to set the path.

$.cookie('cookieName','value',{ expires: 7, path: '/'});

instead of

$.cookie('cookieName','value',{ expires: 7 });

It looks like you set the path on one cookie, but not the other.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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