How to redirect user to an absolute url in angularjs.
For example: i have a page, my current url (http://example.com/submit), once the user click some button in th
I had some issues with the above solutions and came across this and thought I would share. Be sure to inject '$timeout', '$window' into your controller.
$timeout(function() { $window.location.assign('https://URL'); }, 3000);