I have to call one ajax request using angular JS $http.get method but it shows me error
Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource at http://example.com. (Reason: CORS header 'Access-Control-Allow-Origin' missing).
My method is
$http.get(url).success( function(response) {
// some thing here
});
there is any way to set crossDomain: true in get method