Skip to content

Instantly share code, notes, and snippets.

View Saboteur777's full-sized avatar

Otto Radics Saboteur777

View GitHub Profile
@billiegoose
billiegoose / vanilla-cookies.js
Created January 24, 2015 02:23
Vanilla Cookies - a dead simple yet full-featured JavaScript cookie library
// Vanilla Cookies - a dead simple yet full-featured JavaScript cookie library
// derived from http://stackoverflow.com/a/19189846
/*********************************************************
Gets the value of a cookie.
**********************************************************/
getCookie = function(sName)
{
var oCrumbles = document.cookie.split(';');
for(var i=0; i<oCrumbles.length;i++)