SlideNavigation

by Alvaro Silvino

HTML

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<body ng-app="turingApp" ng-controller="turingController">

    <select ng-model="City" ng-options="billing.city as billing.country for  billing in addressToBill">
    </select>
    <p>{{billing.billing}}</p>

</body>

JavaScript

var app = angular.module("turingApp", []);

app.controller("turingController", ["$scope", function($scope) {


  $scope.addressToBill = [{city:"fremont2", country:"USA2", state:"California2"},{city:"fremont", country:"USA", state:"California"}];

}]);