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?

link|improve this question

I ran into this too, but i'm not sure if it is going to be possible. After looking at resources it seemed like the browser didn't even request the file. I do know that IE will be an issue; IE will not load script tags if it doesn't recognize the type attribute. I ended up just using ajax. – Kevin B Sep 6 '11 at 21:25
feedback

2 Answers

I had a similar situation, and my solution was to write a template caching object that was responsible for loading a template via ajax the first time it was requested and storing in memory from then on. It worked rather well for my project. I can post the code i used if you are interested.

link|improve this answer
feedback

I solved this problem using requirejs together with their text plugin. During development, the templates are loaded using an XHR request. When deployed, I optimized using the requirejs r.js file, and the templates are then included in the main js file, saving a number of files to be loaded.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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