Binding ng-show to a select option in AngularJS Binding ng-show to a select option in AngularJS angularjs angularjs

Binding ng-show to a select option in AngularJS


You were close you will want to use == here like this:

<input ng-show="myDropDown=='two'" type="text">

See this fiddle for an example.