I want to show/hide div on specific option selection from a dropdown. But the div stays hidden all the time.
<select class="form-control" ng-model="Type">
<option>First</option>
<option>Second</option>
<option>Third</option>
<option>Forth</option>
</select>
<div ng-hide="Type==='First'">
<label>Div Content</div>
</div>