Skip to content

Instantly share code, notes, and snippets.

@tbeseda
Created March 18, 2011 17:01
Show Gist options
  • Save tbeseda/876429 to your computer and use it in GitHub Desktop.
Save tbeseda/876429 to your computer and use it in GitHub Desktop.
Recursive templating is easy with jQuery tmpl
<script id="list-template" type="text/x-jquery-tmpl">
<li>
${name}
{{if children}}
<ul>{{tmpl(children) '#list-template'}}</ul>
{{/if}}
</li>
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment