Skip to content

Instantly share code, notes, and snippets.

@VictorHugoBatista
Created June 2, 2017 21:04
Show Gist options
  • Save VictorHugoBatista/fe98e45b88819fa893d6af6b419391db to your computer and use it in GitHub Desktop.
Save VictorHugoBatista/fe98e45b88819fa893d6af6b419391db to your computer and use it in GitHub Desktop.
Retorna um array relacional com todos os cookies via javascript sem o uso de frameworks ou bibliotecas.
function get_cookies() {
var cookies_raw = document.cookie.split(';'),
cookies = [];
$.each(cookies_raw, function(key, cookie){
cookie_array = cookie.split('=');
cookies[cookie_array[0]] = cookie_array[1];
});
return cookies;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment