0.3.4 • Published 12 years ago
jar v0.3.4
jar
Simple cookie handling:
cookieValue = jar.cookie('chocolateChip');
jar.cookie('chocolateChip', 'new cookie value');
It's also easy to set cookie options:
jar.cookie('topSecret', 'this cookie will self-destruct in 5 days', { expires: 5 });
Usage with Ender
After you install Ender, include jar
in your package:
ender add jar
This will namespace the package under the $ variable:
$.cookie(...);