I want to know that how can I call a jQuery function in my angular function, like I've a jquery function like:
function testData(){
    // code
}
and I've a angular function like:
myApp.controller(AppCtrl,['$scope', function($scope) {
    $scope.imagesData = function(){
        //here I need to call the function: testData() 
    }
}]);
so, Please let me know that how can I call my testData() inside the angularjs function($scope.imagesData()). Thanks in advance.
 
     
     
     
    