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.