In this example of Ng-Change
, we have a dropdown with two values circle and rectangle, so on change of drop down selection the span will get changed from circle to rectangle. Html code: $scope.changeShape = function () { $scope.listShape == "Circle" ? $scope.circle = true : $scope.circle = false; }; See the output: