Is there a way to access the contents of a mustache template file that is loaded via the HTML <head> via javascript?

<link rel="template" href="templates/address.mustache" type="text/html" />

or

<script src="templates/address_field.mustache" type="text/html" charset="utf-8" id="address_template"></script>

I've had success loading them through ajax and through a <script> tag in the body, but I'm not sure how to get the file source when loaded as a separate file through the head.

link|improve this question
feedback

1 Answer

well you need to use a selector that will get the contents of that html:

with jqeury it is as simple as

var tmpl=$.trim($('#address_template').val()); //trim the white spaces in the template
Mustache.to_html(tmpl,json);
link|improve this answer
I upvoted you (and it's too late to fix) but the answer you've given doesn't work - .val() won't evaluate external files. – nailer Feb 20 at 19:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.