You chose {{active}} <div<html> <head> <meta charset="utf-8"/> <link href="http://fonts.javatechnologycenter.com/css?family=Open+Sans:400,700" rel="stylesheet" /> <link href="style.css" rel="stylesheet" /> </head> <body ng-app> <nav class="{{active}}" ng-click="$event.preventDefault()"> <a href="#" class="home" ng-click="active='home'">Home</a> <a href="#" class="about" ng-click="active='about'">About</a> <a href="#" class="contact" ng-click="active='contact'">Contact</a> <a href="#" class="service" ng-click="active='service'">Service</a> </nav> <p ng-show="active">You chose <b>{{active}}</b></p> </body> </html> |