from
Return a template loaded from an element.
stache.from(id)
Load a template from an HTML element (usually a <script> element)
specified by id. This is used typically for demo purposes.
For example, with a <script> tag as follows in your HTML:
<script type='text/stache' id='my-template'>
<h1>{{message}}</h1>
</script>
Load and render that template like:
var template = stache.from("my-template");
template({message: "Hello There!"});
Parameters
- id
{String}:The id of the element, whose
innerHTMLwill be used to create a template.