1 /*jshint eqnull:true */
3 * jQuery Cookie Plugin v1.2
4 * https://github.com/carhartl/jquery-cookie
6 * Copyright 2011, Klaus Hartl
7 * Dual licensed under the MIT or GPL Version 2 licenses.
8 * http://www.opensource.org/licenses/mit-license.php
9 * http://www.opensource.org/licenses/GPL-2.0
11 (function ($, document, undefined) {
20 return decodeURIComponent(s.replace(pluses, ' '));
23 var config = $.cookie = function (key, value, options) {
25 if (value !== undefined) {
26 options = $.extend({}, config.defaults, options);
32 if (typeof options.expires === 'number') {
33 var days = options.expires, t = options.expires = new Date();
34 t.setDate(t.getDate() + days);
37 value = config.json ? JSON.stringify(value) : String(value);
39 return (document.cookie = [
40 encodeURIComponent(key), '=', config.raw ? value : encodeURIComponent(value),
41 options.expires ? '; expires=' + options.expires.toUTCString() : '', // use expires attribute, max-age is not supported by IE
42 options.path ? '; path=' + options.path : '',
43 options.domain ? '; domain=' + options.domain : '',
44 options.secure ? '; secure' : ''
49 var decode = config.raw ? raw : decoded;
50 var cookies = document.cookie.split('; ');
51 for (var i = 0, parts; (parts = cookies[i] && cookies[i].split('=')); i++) {
52 if (decode(parts.shift()) === key) {
53 var cookie = decode(parts.join('='));
54 return config.json ? JSON.parse(cookie) : cookie;
63 $.removeCookie = function (key, options) {
64 if ($.cookie(key) !== null) {
65 $.cookie(key, null, options);