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 6334231
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T18:37:07+00:00 2026-05-24T18:37:07+00:00

I am trying to learn mustache / icanhaz in conjunction with jquery and javascript,

  • 0

I am trying to learn mustache / icanhaz in conjunction with jquery and javascript, and I’ve got a mustache template to which I’m passing various data. One of the pieces of data is a list of choices, but that list can vary in length (say, one to three choices). How do I pass that varying data to mustache?

This is my code:

Javascript:

for (childIndex in scenes[sceneID].children) {
    childSceneID = scenes[sceneID].children[childIndex];
    childScene = scenes[childSceneID];
    childLink = childScene.name;
}

decision = ich.decision(decisionData);
$('#page_container').append(decision);

Template:

<script id="decision" type="text/html">
        <div id="page">
            <h1>{{ tTitle }}</h1>
            <ul id="options">
                <li>{{tDecision}}</li>
            </ul>
            {{#tBacklink}}<a id="back" data-sceneid="{{tBacklink}}">Back</a>{{/tBacklink}}
        </div>
    </script>

So somehow I have to pass all the childLinks in the decision object to mustache to be parsed in a loop to output the list of <li> elements.

Anybody know how to do this?

  • 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-05-24T18:37:08+00:00Added an answer on May 24, 2026 at 6:37 pm

    Model your data in an object first of all,

    var scene = {
      tTitle: '',
      tDecision: '',
      tBacklink: ''
    };
    

    Then place each of these objects in an array on each iteration of your loop

    var scenes = [];
    
    for () {
      scenes.push(scene);
    }
    

    Then call Mustache to render the template with the scenes array, the template has been modified like this

    <script id="decision" type="text/html">
      <div id="page">
        {{#scenes}}
          <h1>{{ tTitle }}</h1>
          <ul id="options">
            <li>{{tDecision}}</li>
          </ul>
          {{#tBacklink}}<a id="back" data-sceneid="{{tBacklink}}">Back</a>{{/tBacklink}}
        {{/scenes}}
      </div>
    </script>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Trying to learn jquery here so I took a regular javascript snippet that loops
Trying to learn PL/SQL with multimedia data. Can anyone please point out that from
Trying to learn F# but got confused when trying to distinguish between fold and
In trying to learn JavaScript closures, I've confused myself a bit. From what I've
Still trying to learn the basic of jquery so in the weekend I started
I have been trying to learn how to write faster more efficient jQuery and
Im trying to learn glib/gtk. I wrote little code which prints files in directory
Trying to learn some jquery to implement an autosave feature and need some assistance.
Im trying to learn javascript by tracing through some code at the moment, I
I am somewhat new to jQuery but have been having fun trying learn about

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.