Creating Cookie
$.dough("cookiename","cookievalue");
Reading Cookie
$.dough("cookiename");
Deleting Cookie
$.dough("cookiename","remove");
Create JSON cookie
Read JSON cookie
$.dough("cookiename","cookievalue");
Reading Cookie
$.dough("cookiename");
Deleting Cookie
$.dough("cookiename","remove");
Create JSON cookie
1 | |
2 | $.dough("jsonCookie", "{'someName':'someValue','someOtherName':'someOtherValue'}"); |
3 | |
1 | |
2 | $.dough("jsonCookie").someName; |
3 | |
No comments:
Post a Comment