I have a HTML file which has href attribute which should change dynamically each time the user clicks. But it is not happening here. I am using accordions using bootstrap here. Please see the below code.
<a class="accordion-toggle" data-toggle="collapse"
data-parent="#accordion" href="#collapseOne" translate>
<div class="row">
<label class="control-label col-sm-1">{{week.weekNo}} </label>
<label class="control-label col-sm-6">{{week.weekStartDate}}
{{week.weekEndDate}}</label>
<i class="indicator glyphicon glyphicon-chevron-up pull-right"
style="margin-right: 15px"></i>
</div>
</a>
How am I supposed to do that? I have gone through few methods to change href dynamically but nothing worked for me. Please help me.