I'm Working in a personal project but I have a small problem when i want to render some data binding from angularjs in jquery, this is the code.
<div class="claimButton claimActive">
<a href="{{ product.url }}" target="_blank" onclick="startTimer({{ $index }},{{ product.time }})">CLAIM</a>
</div>
The principal problem inside here
This the original code onclick="startTimer(0,5)"
but when i turn in databinding from angularjs onclick="startTimer({{ $index }},{{ product.time }})"
stop working and no render the numbers.
I hope that somebody help me to resolve this problem.