Angular: Empty Fiddle

http://angularjs.org/

HTML

<script src="http://code.angularjs.org/angular-1.0.1.js"></script>
<div ng-controller="MyCtrl">
    <div class="form-section" ng-show="visible">   
       <a class="next" ng-click="makeInvisible()">NEXT</a>
  </div>
</div>

CSS

li {
    padding: 10px;
    cursor: pointer;
    background: #eee;
}

li:hover {
    background: #ddd;
}

JavaScript

var myApp = angular.module('myApp',[]);

function MyCtrl($scope) {
    $scope.visible = true;
    
    $scope.makeInvisible = function(){
    	$scope.visible = false;
    }
}