angularJS validation firing onblur for IE10 -


i have validation form working on chrome/ff/ie8/9 on ie10 after loading page firing validation events when clicking input element , outside of element.

<div class="form-group">     <label class="col-sm-3 control-label">username:</label>     <div class="col-sm-9">         <input id="username" name="username" ng-model="username" type="input"                ng-class="{'error-org' : userform.username.$invalid && !userform.username.$pristine}"                class="form-control" placeholder="username" required>         <label ng-show="userform.username.$invalid && !userform.username.$pristine" class="error-org">please enter username</label>     </div> </div> 


Comments

Popular posts from this blog

jQuery Mobile app not scrolling in Firefox -

c++ - How to add Crypto++ library to Qt project -

php array slice every 2th rule -