Skip to content

Instantly share code, notes, and snippets.

@ltw
Created November 28, 2014 22:19
Show Gist options
  • Select an option

  • Save ltw/ac9718857c10f2dc5125 to your computer and use it in GitHub Desktop.

Select an option

Save ltw/ac9718857c10f2dc5125 to your computer and use it in GitHub Desktop.
var questions = [{
choices : [
{ name : "Answer One" }
{ name : "Answer Two" }
]
},
{}]
$("#questionTmpl").render(questions)
<script type="text/x-jsrender" id="questionTmpl">
<li>
<input type="text" name="question[body]" />
<ul class="choices">
{{for choices tmpl="choiceTmpl"}}
</ul>
</li>
</script>
<script type="text/x-jsrender" id="choiceTmpl">
<li>
{{:name}}
</li>
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment