Skip to content

Instantly share code, notes, and snippets.

@pori
Created February 23, 2016 15:52
Show Gist options
  • Save pori/3358cfbe26e48db4a574 to your computer and use it in GitHub Desktop.
Save pori/3358cfbe26e48db4a574 to your computer and use it in GitHub Desktop.
Format Mixpanel "content people_tab" list element from dashboard to grab raw keys. Useful for imports.
'use strict';
let list = document.getElementsByClassName('word_container');
let temp = document.getElementById('temp');
let res = Array.prototype.slice.call(list).map(el => `"${el.innerText}"`);
temp.innerHTML = res;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment