ng-change doesn't seem to be working with select2. Is there a limitation like this and is there any alternative?
<select ng-change = "selected()" ng-model = "sel" >
<option value=""></option>
<option ng-repeat = "o in range" value="{{o.value}}">{{ o.value }}</option>
</select>