I am getting some strange behavior on my Dropdown control in Angular Js application. Now selected="selected" is not working and default selected values are blank.
I have also been facing another issue on the edit click button. It is associated to gender and should be selected automatically on dropdown but it is still not working.
<select ng-model="newemployee.Gender" class="form-control">
   <option value="1" selected="selected">Male</option>
   <option value="0">Female</option>
</select>
Is it due to Angular.js file which I have updated to latest version? Because such issues arose after updating.

