How To Toggle Hide/show Inside The Handlebars Template?
I'm very new to programming in general, so I think that my question will be very easy to answer. Sorry if some of the terminologies is a bit off, please correct me. How do I write
Solution 1:
You are repeating the ff
id. Tag element ids should be unique. On the each loop you are creating 3 <p>
tags with the same id. Try concatenating the index
value to the id, something like ff-{@index}
and use that to do the toggle.
Post a Comment for "How To Toggle Hide/show Inside The Handlebars Template?"