I have a radio button
<ul class="data-list-2" style="margin-left: 15px;">
<li>
<input name="rate" type="radio" class="required" value="Stucture" ng-model="contact.package">
<label>Structuring and Drafting Plan</label>
</li>
<li>
<input name="rate" type="radio" class="required" value="Implement" ng-model="contact.package">
<label>Implementing and Managing Plan</label>
</li>
<li>
<input name="rate" type="radio" class="required" value="both" ng-model="contact.package">
<label>Both</label>
</li>
</ul>
The problem is when I click the radio button it get checked but doesn't appear on scope variable. When I inspect the element I see the following:
<li>
<div class="iradio_square-aero">
<input name="rate" type="radio" class="required ng-pristine ng-untouched ng-valid" value="both" ng-model="contact.package" style="position: absolute; opacity: 0;">
<ins class="iCheck-helper" style="position: absolute; top: 0%; left: 0%; display: block; width: 100%; height: 100%; margin: 0px; padding: 0px; border: 0px; opacity: 0; background: rgb(255, 255, 255);"></ins></div>
<label>Both</label></li>
Also, I found out that page is using
<!-- Radio and checkbox styles -->
<script src="check_radio/jquery.icheck.js"></script>
Please Guide how to pass the radio value to angular.