AngularJS - Redirect to another domain from code

angularjs, javascript, redirect

Solution

The `$location` service does not allow to reload the page. The Angular way to perform a redirection to another domain is to use the `$window` service:

$window.location.href = 'http://google.com'

Problem

I've set up one plunker to describe my problem: Plnkr Actually I want to navigate to another page in another domain (added one handler to a button click). But it's not working. Thanks in advance. Update `window.location.href = "http://google.com";` is working but `$location.absUrl` service from AngularJS default is not working.

Original source