1.

How To Read, Write And Delete Cookies In Jquery?

Answer»
  • 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");



Discussion

No Comment Found