i am creating a web app in which i have four button
1)click here
2) here click
3) (hide button) show click here
4) (hide button) show here click
3rd and 4th buttons are hide
what i want is__________________
when i click on 1st button 3rd button should be visible and when i click on 2nd button 4th button should be visible here is my code
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Example - example-ng-show-production</title>
<link href="glyphicons.css" rel="stylesheet" type="text/css">
<link href="animations.css" rel="stylesheet" type="text/css">
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.5.8/angular.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.5.8/angular-animate.js"></script>
</head>
<body ng-app="ngAnimate">
<div>
<button ng-model="clickedh">Click here</button>
<button ng-model="clickede">here click</button>
</div>
<div>
<button ng-hide="true" ng-show="clickedh">show click here</button>
<button ng-hide="true" ng-show="clickede">show here click</button>
</div>
</body>
</html>
but it is not working what do i need to do?