In Angular Js, is there a way to utilize a select element in a manner similar to how you can use a list of links?
For instance, if I have links set up like this:
<a ng-click="ctrl.change('argument1','argument2')">One</a>
<a ng-click="ctrl.change('argument3','argument4')">Two</a>
...
Is it possible to achieve the same functionality with a select element?
<select>
<option value="argument1,argument2">One</option>
<option value="argument3,argument4">Two</option>
...
</select>