For MiniProfiler we use the beta version of jquery.tmpl turns out it is incompatible with jsRender, something that is causing pain for some of our users.

Is there a way to load up jquery.tmpl in an unobtrusive way so it plays nice with other templating engines that may already be loaded in the page?

Are there any of the other templating engines (eg. mustache or whatever) that allow themselves to be loaded in a totally unobtrusive way, meaning that multiple versions can run side by side an play nice?

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

Sure, jQuery.tmpl can run quite easily in an unobtrusive mode, all that is required is passing it a different jQuery object ... for example:

<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">
var jQueryMP = $.noConflict();
</script>

then edit the last line on jQuery.tmpl from:

})(jQuery);

to:

})(jQueryMP);
link|improve this answer
feedback

I'm using Distal templating engine.

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.