This is my script in which I included in my html code-
<div class="progress-bar"></div>
<script type="text/javascript">
$('.progress-bar').gradientProgressBar({
value: $(this).attr('$scope.moodvalue'),
size: 400,
fill: {
gradient: ["red", "green", "yellow"]
}
});
</script>
</div>
and I am Passing $scope.moodevalue from angular code. But as I am getting $scope.moodvalue = 0.21, but the change is not appearing on my progress bar.
please help me, how to pass dynamic value to script.
Thanks in Advance.