Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.14/angular.min.js"></script>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body ng-app="app">
  <div ng-controller="AppCtrl">
    <select ng-init="ticket_quantity = ticket_group.splits[0]" ng-model="ticket_quantity" ng-options="val as val for val in ticket_group.splits">
    </select>
  </div>
  
</body>
</html>
 
var app = angular.module("app", []);
app.controller("AppCtrl", function ($scope) {
  $scope.ticket_group = {};
  $scope.ticket_group.splits = [1,3];
});
Output 300px

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers