AngularJS Example:

by dingen2010

HTML

<link rel="stylesheet" href="http://twitter.github.com/bootstrap/assets/css/bootstrap.css">
<body ng-app="myApp" ng-cloak>
    <div ng-controller="todocontroller">
        <select ng-options="v for v in todos">
    </div>
</body>

JavaScript

var myApp = angular.module('myApp', []);

 function todocontroller($scope) {
     $scope.todos = ["een", "twee"];


 }