Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save fauverism/f6181975ce92806fe25f to your computer and use it in GitHub Desktop.
Save fauverism/f6181975ce92806fe25f to your computer and use it in GitHub Desktop.
Repeat in a select element the angular way
JS
$scope.options = [{ name: "a", id: 1 }, { name: "b", id: 2 }];
$scope.selectedOption = $scope.options[1];
HTML
<select data-ng-options="o.name for o in options" data-ng-model="selectedOption"></select>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment