Skip to content

Instantly share code, notes, and snippets.

View Pinhead877's full-sized avatar

Alex Apchiory Pinhead877

View GitHub Profile
@Pinhead877
Pinhead877 / cookieManage.js
Last active September 10, 2016 08:48
JavaScript cookie set and upadte
function increaseCookieValue(ckName){
var siteCookie = document.cookie, cookieValue;
if(siteCookie == null || !siteCookie.contains(ckName) || isNaN(getNumFromCookie(ckName))){
cookieValue = 1
}else{
var num = getNumFromCookie(ckName);
cookieValue = num+1;
}
return setCookie(cookieValue);
}