I want to get value when I change the dropdown on ng-change. My code as follows:-
<select class="form-control" id="cobSRQ2" ng-change="cobchange()" required>
<option>[Select One]</option>
<option value="Primary" selected>Primary</option>
<option value="Secondary">Secondary</option>
<option value="Tertiary">Tertiary</option>
</select>
I want to send the value to Angular JS controller.
Please help