Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function pegaCookie(name) {
- var prefix = name + "=";
- var namePos = document.cookie.indexOf(prefix);
- if (namePos == -1) return (null);
- var valuePos = namePos + name.length + 1;
- var endPos = document.cookie.indexOf(";", valuePos);
- if (endPos == -1) endPos = document.cookie.length;
- return (unescape(document.cookie.substring(valuePos, endPos).replace(/\+/g, " ")));
- };
Advertisement
Add Comment
Please, Sign In to add comment