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