Search code examples
angularjsangularjs-ng-href

Set ng-href to current page


Is it possible to set ng-href to go to the current page?

eg:

<a ng-href="https://www.facebook.com/sharer/sharer.php?u={{ window.location.href }}">facebook</a>

When the above runs, I keep getting:

<a ng-href="https://www.facebook.com/sharer/sharer.php?u=" href="https://www.facebook.com/sharer/sharer.php?u=">facebook</a>

Solution

  • How are you setting value to window.location.href ? This sure doesn't look like native JS.

    Here's a fiddle to help you out.