angularjs - select multiple
http://angularjs.org/
HTML
<script src="http://code.angularjs.org/angular-1.0.1.js"></script>
<script src="https://raw.github.com/ivaynberg/select2/master/select2.js"></script>
<link rel="stylesheet" href="https://raw.github.com/ivaynberg/select2/master/select2.css">
<div ng-init="selectedColors=3">
<select id="myselection" ng-model="selectedColors">
<option value="1">Red</option>
<opthttp://jsfiddle.net/eJVD7/#updateion value="2">Blue</option>
<option value="3" selected="selected">Green</option>
</select>
<div>Selected Colors: {{selectedColors }}</div>
JavaScript
var myApp = angular.module('myApp', []);