I'd like to be able to reset the selected <option>
in the <select>
to the default one (the disabled hidden
one).
<select ng-model="question1" ng-options="answer as answer.name for answer in $ctrl.question1Answers track by answer.id">
<option selected disabled hidden>CHOOSE</option>
</select>