Skip to content

Instantly share code, notes, and snippets.

@matryer
Created April 18, 2018 13:04
Show Gist options
  • Select an option

  • Save matryer/9f31883c6a6ec8cb53551f7b371ac111 to your computer and use it in GitHub Desktop.

Select an option

Save matryer/9f31883c6a6ec8cb53551f7b371ac111 to your computer and use it in GitHub Desktop.
var choicesEl = document.getElementById('choices')
for (var choice in response.choices) {
var choice = response.choices[choice]
// keep track of this reward ID
rewardIDs[choice.id] = choice.reward_id
var choiceEl = document.getElementById('choice-'+choice.id)
choicesEl.appendChild(choiceEl)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment