I am trying to figure out how to store jQuery templates in different files from the base html (without using a string or ajax request).
For instance, on my html page, I would like to do this:
<script type ="text/x-jquery-tmpl" id="personTmpl" src="js/personApp.tmpl.html"></script>
<div id="container"></div>
<script type="text/javascript">
var p = { name: 'joe' };
$( "#personTmpl" ).tmpl( p ).appendTo( "#container" );
</script>
Where the #personTmpl would be defined in the personApp.tmpl.html file (or someplace else)
The end goal is just keeping my template separate from the js code (and html).
I don't like the string method, because it makes editing hard for longer templates. And I don't want to fire an ajax request off on load either (note, the template file would eventually be aggregated for production).
Thoughts?