Disable Form On the basis of Dynamic Id of form using Angularjs? like Id of form come from Foreach Loop..
<div class="pan" style="margin-top:40px"> <div ng-repeat="e in Data"> <hr> <p class="text-muted" style="color:darkgreen">Q. {{e.Question}}</p> <form id="{{e.QuizQuestionID}}"> <div ng-repeat="s in e.option" id="e.QuizQuestionID"> <label> <input name="options" type="radio" ng-click="check(e.QuizQuestionID,s.QqID)"> </label> <span>{{s.ops}} </span> </div> </form> </div> </div>`