my html code is
<input type="text" id="ID" ng-disabled="isDisabled" />
when my page load, focus set properly on ID field but after on click of save button again i set focus on ID field but it is not set both time "isDisabled" value is false but if i remove ng-disabled focus works properly
i set focus in my controller like
angular.element("#ID").focus();
please give me solution so that i can focus with ng-disabled
Thanks in advance