Modal from Handlebars only displays 0 Index for all entries










0














I have a dynamic list I am printing to the user of articles scraped using Cheerio. They display via handlebars with a modal created inside each article iteration. My only catch is the modal is meant to display the headline captured for the article on which a user selects to chat, but I'm only getting the first index article in the modal for any of the articles selected in the user screen. Not sure what I'm missing here.



 <ul>
#each found
<div class="card">
<img class="card-img-top" src="this.image" />
<h4 class="card-header"><span class="label"></span>
this.headline</h4>
<div class="card-body">
<p class="card-text"><span class="label"></span> this.summary</p>
<a href=this.link class="btn btn-primary">Read Full Article</a>
<a data-id=this._id><button id="myBtn" value=this.headline class="btn btn-primary chat-button">Chat!</button></a>
<button type="button" href="/delete" data-id=this._id class="btn btn-primary delete-button">Delete</button>

!-- Modal --
<div id="myModal" class="modal">
<div class="modal-content">
<span class="close">&times;</span>
<h4>this.headline</h4>
Share your thoughts w/ Chicago!
<form>
First name:<br>
<input type="text" name="firstname"><br>
Comment:<br>
<textarea name="comment" rows="10" columns="20"></textarea>
<button type="button" href="/delete" data-id=this._id
class="btn btn-primary delete-button">Send</button>
</form>
</div>
</div>
</div>
</div>

/each
</ul>









share|improve this question


























    0














    I have a dynamic list I am printing to the user of articles scraped using Cheerio. They display via handlebars with a modal created inside each article iteration. My only catch is the modal is meant to display the headline captured for the article on which a user selects to chat, but I'm only getting the first index article in the modal for any of the articles selected in the user screen. Not sure what I'm missing here.



     <ul>
    #each found
    <div class="card">
    <img class="card-img-top" src="this.image" />
    <h4 class="card-header"><span class="label"></span>
    this.headline</h4>
    <div class="card-body">
    <p class="card-text"><span class="label"></span> this.summary</p>
    <a href=this.link class="btn btn-primary">Read Full Article</a>
    <a data-id=this._id><button id="myBtn" value=this.headline class="btn btn-primary chat-button">Chat!</button></a>
    <button type="button" href="/delete" data-id=this._id class="btn btn-primary delete-button">Delete</button>

    !-- Modal --
    <div id="myModal" class="modal">
    <div class="modal-content">
    <span class="close">&times;</span>
    <h4>this.headline</h4>
    Share your thoughts w/ Chicago!
    <form>
    First name:<br>
    <input type="text" name="firstname"><br>
    Comment:<br>
    <textarea name="comment" rows="10" columns="20"></textarea>
    <button type="button" href="/delete" data-id=this._id
    class="btn btn-primary delete-button">Send</button>
    </form>
    </div>
    </div>
    </div>
    </div>

    /each
    </ul>









    share|improve this question
























      0












      0








      0







      I have a dynamic list I am printing to the user of articles scraped using Cheerio. They display via handlebars with a modal created inside each article iteration. My only catch is the modal is meant to display the headline captured for the article on which a user selects to chat, but I'm only getting the first index article in the modal for any of the articles selected in the user screen. Not sure what I'm missing here.



       <ul>
      #each found
      <div class="card">
      <img class="card-img-top" src="this.image" />
      <h4 class="card-header"><span class="label"></span>
      this.headline</h4>
      <div class="card-body">
      <p class="card-text"><span class="label"></span> this.summary</p>
      <a href=this.link class="btn btn-primary">Read Full Article</a>
      <a data-id=this._id><button id="myBtn" value=this.headline class="btn btn-primary chat-button">Chat!</button></a>
      <button type="button" href="/delete" data-id=this._id class="btn btn-primary delete-button">Delete</button>

      !-- Modal --
      <div id="myModal" class="modal">
      <div class="modal-content">
      <span class="close">&times;</span>
      <h4>this.headline</h4>
      Share your thoughts w/ Chicago!
      <form>
      First name:<br>
      <input type="text" name="firstname"><br>
      Comment:<br>
      <textarea name="comment" rows="10" columns="20"></textarea>
      <button type="button" href="/delete" data-id=this._id
      class="btn btn-primary delete-button">Send</button>
      </form>
      </div>
      </div>
      </div>
      </div>

      /each
      </ul>









      share|improve this question













      I have a dynamic list I am printing to the user of articles scraped using Cheerio. They display via handlebars with a modal created inside each article iteration. My only catch is the modal is meant to display the headline captured for the article on which a user selects to chat, but I'm only getting the first index article in the modal for any of the articles selected in the user screen. Not sure what I'm missing here.



       <ul>
      #each found
      <div class="card">
      <img class="card-img-top" src="this.image" />
      <h4 class="card-header"><span class="label"></span>
      this.headline</h4>
      <div class="card-body">
      <p class="card-text"><span class="label"></span> this.summary</p>
      <a href=this.link class="btn btn-primary">Read Full Article</a>
      <a data-id=this._id><button id="myBtn" value=this.headline class="btn btn-primary chat-button">Chat!</button></a>
      <button type="button" href="/delete" data-id=this._id class="btn btn-primary delete-button">Delete</button>

      !-- Modal --
      <div id="myModal" class="modal">
      <div class="modal-content">
      <span class="close">&times;</span>
      <h4>this.headline</h4>
      Share your thoughts w/ Chicago!
      <form>
      First name:<br>
      <input type="text" name="firstname"><br>
      Comment:<br>
      <textarea name="comment" rows="10" columns="20"></textarea>
      <button type="button" href="/delete" data-id=this._id
      class="btn btn-primary delete-button">Send</button>
      </form>
      </div>
      </div>
      </div>
      </div>

      /each
      </ul>






      handlebars.js express-handlebars






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 12 at 18:42









      Korslin

      178




      178



























          active

          oldest

          votes











          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53268244%2fmodal-from-handlebars-only-displays-0-index-for-all-entries%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown






























          active

          oldest

          votes













          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.





          Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


          Please pay close attention to the following guidance:


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53268244%2fmodal-from-handlebars-only-displays-0-index-for-all-entries%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Top Tejano songwriter Luis Silva dead of heart attack at 64

          ReactJS Fetched API data displays live - need Data displayed static

          Evgeni Malkin