Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7939087
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T22:59:34+00:00 2026-06-03T22:59:34+00:00

Is it possible to store a jsRender template in a separate file? I want

  • 0

Is it possible to store a jsRender template in a separate file?

I want to store it in a separate file and make a reference of it in my page.

something like this

<script id="templateName" type="text/x-jsrender" src="thisIsTheTemplate.js"></script>

I will apreciate any commemnts or suggestions.

Thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-03T22:59:36+00:00Added an answer on June 3, 2026 at 10:59 pm

    Yes, you can accomplish this (I use this every time).

    let’s assume that you have your templates in a template folder and it is called, for example _productDetails.tmpl.html

    in your page you use jQuery $.get() to pull it and load into the template, like:

    var renderExternalTmpl = function(item) {
    
        var file = '../templates/_' + item.name + '.tmpl.html';
        $.when($.get(file))
         .done(function(tmplData) {
             $.templates({ tmpl: tmplData });
             $(item.selector).html($.render.tmpl(item.data));
         });    
    }
    

    and you pass an object item witch will contain all 3 properties, like:

    renderExternalTmpl({ name: 'productDetails', selector: '#items', data: {} })
    

    You can have a nice utilities class to hold all this:

    var my = my || {};
    my.utils = (function() {
        var getPath = function(name) {
            return '../templates/_' + name + '.tmpl.html';
        },
        renderExtTemplate = function(item) {
    
            var file = getPath( item.name );
            $.when($.get(file))
             .done(function(tmplData) {
                 $.templates({ tmpl: tmplData });
                 $(item.selector).html($.render.tmpl(item.data));
             });    
        };
    
        return {
            getPath: getPath,
            renderExtTemplate: renderExtTemplate
        };
    });
    

    and you can easily call my.utils.renderExtTemplate(item);

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is it possible to store shell output into GDB variable in gdbinit? Something like:
Sorry if this is a dumb question, but it is possible to store, and
Is it possible to execute store procedure like a table for SELECT operator (MS
Does it possible to execute php file and store its output into some variable?
Is it possible to store some special content inside file header of .txt file
I was wondering if it's possible to store a reference to an anonymous function
Is is possible to store directly complete XML file into MySQL db and perform
Is it possible to store the uploaded file by move_uploaded_file to a directory and
Is it possible to store name of the user that started my script last?
Is it possible to store the reference to a class instance? class Node {

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.