<script>
var webQueryApp = angular.module("webQueryApp", [ ]);

        webQueryApp.directive('myDraggable', function(){
        return{
        
        
        scope: {
            
        },
        
                //link start
                
                link: function ($scope, element, attrs) {
      element.bind('click', function(event) {
   *  console.log($scope.arr.length)*;//its saying undefined
     *console.log($scope.arr)*;
  });         
          }
                
                //link end
        };
        });

webQueryApp.controller('TestAppController', function($scope, $http) {
    var app = this;
    console.log("hello console");
   * $scope.arr=[1,2,3,4];*
});
</script>


how can access *arr *variable in custom directive

-- 
You received this message because you are subscribed to the Google Groups 
"AngularJS" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.

Reply via email to