<script src="/js/angular.js1.4.6/angular.min.js"></script>
<div ng-app="myApp" ng-controller="customersCtrl">
<tr ng-repeat="x in names">
var app = angular.module('myApp', []);
app.controller('customersCtrl', function($scope, $http) {
$http.get("/jsjq/angularjs/Customers_JSON.htm")
.success(function (response) {$scope.names = response.records;});