Zhasulan Berdibekov
Zhasulan Berdibekov

Reputation: 1087

Creating cookies through jquery

How can I create, delete, edit cookies using jQuery?

Upvotes: 7

Views: 2436

Answers (4)

PleaseStand
PleaseStand

Reputation: 32112

jQuery doesn't include cookie-specific functionality, but this jQuery plugin can simplify client-side cookie manipulation:

https://github.com/carhartl/jquery-cookie

Upvotes: 8

Nilambar Sharma
Nilambar Sharma

Reputation: 1740

Here is an nice jQuery plugin for handling cookies.

http://jquery-howto.blogspot.com/2010/09/jquery-cookies-getsetdelete-plugin.html

Upvotes: 2

Nishant
Nishant

Reputation: 55866

There is a JQuery plugin to these stuffs here: http://plugins.jquery.com/project/Cookie And, this is detailed notes for Cookie How-To in JQuery http://www.ilovecolors.com.ar/using-cookies-jquery/

Upvotes: 1

Related Questions