Created
February 23, 2016 15:52
-
-
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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'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