Strange thing I'm trying to do apparently.
Using a button with onClick, I can do a simple Javascript redirect to a site.
Using a button with ng-click, I cannot do this same Javascript redirect to a site.
What I'm trying to accomplish is a button, which when clicked, will redirect to a URL which includes some two-way bind fields, but without the use of a custom function in a controller.
ex.
Is there any possible way to do this? ng-click doesn't want to perform any variation of a redirect, whereas onClick doesn't want to display my two-way binding variables.
I have it working with a controller with a login() function which simply builds the URL, but I'd REALLY like to simply this and use angular's two-way binding without the controller.
Thanks!