Angular: Empty Fiddle

http://angularjs.org/

HTML

<script src="https://code.jquery.com/jquery-2.2.4.js"></script>
<div ng-app="myApp" ng-controller="MyCtrl">
<div  ng-repeat="list in fileUploadList" >
       <div id="{{list}}Upload" >abc</div>
 </div>
</div>

JavaScript

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

//myApp.directive('myDirective', function() {});
//myApp.factory('myService', function() {});


myApp.controller('MyCtrl', function($scope){
	// Success call of uploaded files
  $scope.fileUploadList =[0,1,2];
  $( document ).ready(function() {
    console.log(document.getElementById($scope.fileUploadList[0] + "Upload"))
});
 
})