Clicking the button will cause the form to refresh.
<p>I have a form in Angular with two button labels. A button submits the form on <code>ng-click</code>. The other button is purely for navigation using <code>ng-click</code>. However, when this second button is clicked, AngularJS causes the page to refresh, triggering a 404 error. I set a breakpoint in the function and it triggers my function. If I do any of the following, it stops: </p>
<ol>
<li>If I remove <code>ng-click</code>, the button does not cause the page to refresh. </li>
<li>If I comment out the code in the function, it does not cause the page to refresh. </li>
<li>If I change the button label to an anchor label (<code><a></code>) and add <code>href=""</code> it does not cause a refresh . </li>
</ol>
<p>The latter seems to be the easiest solution, but why does AngularJS run any code after my function that causes the page to reload? Looks like a bug. </p>
<p>This is the form: </p>
<pre class="brush:php;toolbar:false;"><form class="form-horizontal" name="myProfile" ng-switch-when="profile">
<fieldset>
<div class="control-group">
<label class="control-label" for="passwordButton">Password</label>
<div class="controls">
<button id="passwordButton" class="secondaryButton" ng-click="showChangePassword()">Change</button>
</div>
</div>
<div class="buttonBar">
<button id="saveProfileButton" class="primaryButton" ng-click="saveUser()">Save</button>
</div>
</fieldset>
</form></pre>
<p>This is the controller method: </p>
<pre class="brush:php;toolbar:false;">$scope.showChangePassword = function() {
$scope.selectedLink = "changePassword";
};</pre>
<p><br /></p>