Javascript easy cookie manipulation.
The below requirements are only if you want to save and load json
objects to cookie, if not you can save raw data.
JSON
https://github.com/douglascrockford/JSON-js to savejson
objects to cookie usingstringify
method.- Please consider browser native support or only copy the
stringify
method to your utilities.
- Please consider browser native support or only copy the
jQuery
https://github.com/jquery/jquery to convert loaded content tojson
object.
###Create a cookie var cookie = new jecookie('cookie_name'); var cookie = new jecookie('cookie_name', {name : 'value'}, {secure :true, domain : '.example.org'});
Params:
name
: cookie namedata
: dataopts
: optionsopts.secure
set secureopts.domain
domainopts.path
pathopts.expires
expiration, use 0 to session cookie
###Load a cookie cookie.load();
###Change data
If JSON
support:
cookie.data = {name : value, content : value};
Otherwise:
cookie.data = value;
###Change options cookie.opts.secure = true; cookie.opts.domain = '.example.org'
###Save data cookie.save(); //default expiration cookie.save(0); //session cookie
###Destroy a cookie cookie.destroy();
//...
var cookie = new jecookie('settings');
if(cookie.load()) //cookie exists
{
my_element.height = cookie.data.height;
my_element.width = cookie.data.width;
}
else //cookie does not exists
{
cookie.data =
{
height : 100,
width : 100
};
cookie.save();
}
//...
- IE 6+
- FF 3+
- Chrome 10+
- Opera 10+
- 1.0
- Basic base code
- 1.1
- Third parameter as an options object in constructor
- Removed path param in save method
- Domain, path and session cookie support
- Control for array in loaded data
- 1.1.1
- Change to MIT license
Alejandro El Informático
The MIT license
Copyright (c) 2011 Alejandro El Infromático
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.