I have a single page app. Currently my templates stored in index.html e.g.

 <script id="button" type="text/html">
    <a class="button" href="#" id="${id}">
       ${value}
    </a>
 </script>

Is it a best practice to store them in such way? I've found jQuery templates - where should I put them? but there is no acceptable answer.

link|improve this question

69% accept rate
feedback

1 Answer

up vote 5 down vote accepted

You are doing it right. There is no need to add unnecessary complexity to a single-page app, according to KISS: http://en.wikipedia.org/wiki/KISS_principle

link|improve this answer
I really like this answer and referenced it in my answer to stackoverflow.com/questions/4719828/… – justis Sep 2 '11 at 17:21
feedback

Your Answer

 
or
required, but never shown

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