I'm attempting to utilize a jsonp
call with the following code, but it doesn't appear to be functioning as expected.
Code
var url = 'http://z:15957/Category/Categories?callback=JSON_CALLBACK';
$http.jsonp(url).success(function (data) {
$scope.results = data.feed.entry;
});
Any assistance would be greatly appreciated.