⟩ How to read, write and delete cookies using jQuery?
► To deal with cookies in jQuery we have to use the Dough cookie plugin.
► Dough is easy to use and having powerful features.
1. Create cookie
$.dough("cookie_name", "cookie_value");
2. Read Cookie
$.dough("cookie_name");
3. Delete cookie
$.dough("cookie_name", "remove");