I was trying to add a variable to a string inside a html tag, but it didn't work. Here is the case, I got a variable {{comment.id}}, which is a number, 41. How could I combine {{comment.id}} with "#multiCollapseExample" in the href="..." part so it becomes href="#multiCollapseExample41"?
post_detail.html
<a class="btn btn-primary" data-toggle="collapse" href="#multiCollapseExample41" role="button" aria-expanded="false" aria-controls="multiCollapseExample41">reply</a>
Any way out? Thanks!
"#multiCollapseExample{{comment.id}}"?