Skip to content

Instantly share code, notes, and snippets.

@joe-watkins
Created February 17, 2014 19:46
Show Gist options
  • Save joe-watkins/9057595 to your computer and use it in GitHub Desktop.
Save joe-watkins/9057595 to your computer and use it in GitHub Desktop.
A Pen by Joe Watkins.
<div id="sampleArea"></div>
<script type="text/template" id="template">
{{name}}
</script>
var template = $('#template').html();
var person = {
name : "Joe"
}
var html = Mustache.to_html(template, person);
$('#sampleArea').html(html);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment