A script to easily handle cookies.
- jQuery
- Include the file after the jQuery library:
<script src="[your_path]/cookie_mgmt.js" type="text/javascript"></script>
- Make an instance:
var Cookie = new Cookie(name[, expDays, path]);
- Adding a value to the cookie (creates cookie, if it doesn´t exist):
Cookie.set(parameter, value);
- Reading a paramter from the cookie:
Cookie.get(parameter);
- Deleting a parameter and its value (removes the cookie, if no further parameters exist):
Cookie.clear(parameter);
- Remove the cookie:
Cookie.remove();
MIT