vote up 0 vote down star

some body help me. how to create, read, and erase some cookies with jquery

flag
exact the same as stackoverflow.com/questions/95213/… and stackoverflow.com/questions/1458724/… – Natrium Oct 21 at 7:39
why is this community wiki? – Natrium Oct 21 at 7:41
why don't you accept answers to your questions? 12 asked questions, 0 accepted answers – Natrium Oct 21 at 7:42

4 Answers

vote up 2 vote down

jquery plug in

http://www.stilbuero.de/2006/09/17/cookie-plugin-for-jquery/

link|flag
there is always a plug in somewhere :) but instead of loading more plugins, I do prefer the "normal" version ;) – balexandre Oct 21 at 7:38
vote up 0 vote down

As I know, there is no direct support, but you can use plain-ol' javascript for that:

        // Cookies
        function createCookie(name, value, days) {
            if (days) {
                var date = new Date();
                date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000));
                var expires = "; expires=" + date.toGMTString();
            }
            else var expires = "";

            var fixedName = '<%= Request["formName"] %>';
            name = fixedName + name;

            document.cookie = name + "=" + value + expires + "; path=/";
        }

        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;
        }

        function eraseCookie(name) {
            createCookie(name, "", -1);
        }
link|flag
question is "with jquery" – Natrium Oct 21 at 7:40
i have been use this script, but doesn't work – Agus Puryanto Oct 21 at 8:24
@Natrium and my answer states (first line!) that there is no Core functions to deal with it – balexandre Oct 21 at 10:01
@Agus ... works fine here, I have it in production projects and they work like a charm! what error are you getting? – balexandre Oct 21 at 10:01
vote up 0 vote down

Use COOKIE plugin:

Set a cookie

$.cookie("example", "foo"); // Sample 1
$.cookie("example", "foo", { expires: 7 }); // Sample 2
$.cookie("example", "foo", { path: '/admin', expires: 7 }); // Sample 3

Get a cookie

alert( $.cookie("example") );

Delete the cookie

$.cookie("example", null);
link|flag

Your Answer

Get an OpenID
or

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