/*jshint eqnull:true */ /*! * jquery cookie plugin v1.1 * https://github.com/carhartl/jquery-cookie * * copyright 2011, klaus hartl * dual licensed under the mit or gpl version 2 licenses. * http://www.opensource.org/licenses/mit-license.php * http://www.opensource.org/licenses/gpl-2.0 */ (function($, document) { var pluses = /\+/g; function raw(s) { return s; } function decoded(s) { return decodeuricomponent(s.replace(pluses, ' ')); } $.cookie = function(key, value, options) { // key and at least value given, set cookie... if (arguments.length > 1 && (!/object/.test(object.prototype.tostring.call(value)) || value == null)) { options = $.extend({}, $.cookie.defaults, options); if (value == null) { options.expires = -1; } if (typeof options.expires === 'number') { var days = options.expires, t = options.expires = new date(); t.setdate(t.getdate() + days); } value = string(value); return (document.cookie = [ encodeuricomponent(key), '=', options.raw ? value : encodeuricomponent(value), options.expires ? '; expires=' + options.expires.toutcstring() : '', // use expires attribute, max-age is not supported by ie options.path ? '; path=' + options.path : '', options.domain ? '; domain=' + options.domain : '', options.secure ? '; secure' : '' ].join('')); } // key and possibly options given, get cookie... options = value || $.cookie.defaults || {}; var decode = options.raw ? raw : decoded; var cookies = document.cookie.split('; '); for (var i = 0, parts; (parts = cookies[i] && cookies[i].split('=')); i++) { if (decode(parts.shift()) === key) { return decode(parts.join('=')); } } return null; }; $.cookie.defaults = {}; $.removecookie = function (key, options) { if ($.cookie(key) !== undefined) { // must not alter options, thus extending a fresh object... $.cookie(key, '', $.extend({}, options, { expires: -1 })); return true; } return false; }; })(jquery, document);