I am currently working on a page using Angularjs, and I have encountered an issue with the behavior of anchor elements being overridden.
For example, below is an anchor element that should simply direct the user to a destination:
<a href="payment/123">Pay!</a>
However, when clicking on this link, instead of going to payment/123
, it appends the link to the current url, resulting in something like
http://www.example.com/shopping/#/payment/123
rather than http://www.example.com/payment/123
.
Does anyone have any suggestions on how to resolve this issue?