I'm starting to work with AngularJS and I have the following situation I have a href that redirects to a div within the page itself by the div id:
<a href="#teste"></a>
<div id="teste"></div>
But AngularJS tries to read this test called by href as if it were a view, does anyone know how to circumvent it? Maybe something that makes the href identify that it is anchor and not a view, or else that you know is welcome too.