Skip to content

Instantly share code, notes, and snippets.

@chipoglesby
Created September 3, 2014 00:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chipoglesby/c92cb8c81c0c68944a9f to your computer and use it in GitHub Desktop.
Save chipoglesby/c92cb8c81c0c68944a9f to your computer and use it in GitHub Desktop.
Assign a random Custom Dimension Group
function makeid()
{
var text = "";
var possible = "AB";
for( var i=0; i < 1; i++ )
text += possible.charAt(Math.floor(Math.random() * possible.length));
return text;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment