Categories: jQuery

jQuery Cookie (Set, Get and Delete)

Share

Cookies are the most important thing or technology for storing data on the client side environment. jQuery Cookie is a simple, lightweight plugin for writing, reading and deleting cookies from client side.

At first you need to download jquery.cookie plugin and simply need to add it in your pages.

<head>
<script src="js/jquery.js"></script>
<script src="js/jquery.cookie.js"></script>
</head>

Set Cookie:

$.cookie('cookie_name', 'cookie_value');
$.cookie('cookie_name', 'cookie_value', { expires: 7 });

To cover all the options:

$.cookie("cookie_name", 'cookie_value', {
expires : 7,
path    : '/',
domain  : 'namasteui.com',
secure  : true
});

Get Cookie:

$.cookie('cookie_name');

returns the value ‘cookie_value’;

Read Also: Differences Between jQuery .bind() vs .live() vs .delegate() vs .on()

Delete Cookie:

$.cookie('cookie_name', null);
$.cookie('cookie_name', null, { path: '/' });
$.removeCookie("cookie_name");

Recent Posts

Jackpotjoy: The UK Beloved Online Casino

Welcome to your ultimate guide to Jackpot joy, the crown jewel of UK online casinos!…

2 days ago

Comparative Analysis of Hybrid Mobile App Development Frameworks

The demand for mobile apps has risen rapidly. The reason? The modern customers proactively rely…

3 days ago

The Rise of Electric Cars in Modern Mobility

In recent years, a significant shift has occurred in the automotive industry as electric vehicles…

3 days ago

Top 3 South Goa beaches worth visiting in summers

Goa is a tiny emerald state of India which is quite famous for attracting tourists…

3 days ago

Unveiling the Mystery: How Long Do Shrooms Last and What to Expect from a Trip

Introduction: Embarking on a psychedelic journey with magic mushrooms, or "shrooms," can be an enlightening…

3 days ago

5 Techniques to Boost Productivity Through Technology Integration

Early technology adopters often reap the rewards of taking a chance. Let’s take a look…

3 days ago