Iam unable to change the font-color of selected option using ng-class and ng-style for static dropdown without ng-repeat.
<select ng-model="myColor">
<option value="">none</option>
<option value="red" ng-style="{'color':myColor}">Red</option>
<option value="green">Green</option>
</select>
Please refer below JSfiddle link
Any help would be appreciated.
Thanks.