I have ng-repeat:
<option ng-repeat="year in data.dateList.year" ng-hide="year.id < limit" value="{{year.id}}" ng-selected="year.id == 0">
{{year.value}}
</option>
And $scope.limit = 1991;
I try to hide options by condition:
ng-hide="year.id < limit"
It does not work
<option>cross browser. IE for example does not support it