суббота, 10 ноября 2012 г.

jquery.cookie - простой, легкий jQuery плагин для работы с cookies.

jquery.cookie 

A simple, lightweight jQuery plugin for reading, writing and deleting cookies.

Usage

Create session cookie:
$.cookie('the_cookie', 'the_value');
Create expiring cookie, 7 days from then:
$.cookie('the_cookie', 'the_value', { expires: 7 });
Create expiring cookie, valid across entire site:
$.cookie('the_cookie', 'the_value', { expires: 7, path: '/' });
Read cookie:
$.cookie('the_cookie'); // => "the_value"
$.cookie('not_existing'); // => null
Delete cookie:
// Returns true when cookie was found, false when no cookie was found...
$.removeCookie('the_cookie');

// Same path as when the cookie was written...
$.removeCookie('the_cookie', { path: '/' });

jquery-cookie on github

Комментариев нет:

Отправить комментарий