Hi Kenneth, like others have said, your server needs to respond with
Access-Control-Allow-Origin: *Instead of *, you can give the URL of your client.
Usually (not sure if AngularJS handles it the same way), your client sends an OPTIONS request the the URL specified in $http.get() and expects the response to be empty with mentioned header set.
Then (and only then), your actual response (POST, GET etc.) gets sent.
So make sure the first OPTIONS request goes through as well ;)
What kind of backend are you using?
Best regards
Bernhard