IE 10/11 Validate error shows when focus field
In IE 10/11 the validation function is triggered once you focus an element , but it should be on blur instead (other browsers invoke validation on blur)
so if you have a required input field and you just focus that input then you will get it marked as red while you still did not lose focus or type anything
suggested fix : replace : this.$element.on('input.bs.validator change.bs.validator focusout.bs.validator', with : this.$element.on('change.bs.validator focusout.bs.validator',
@1000hz any news on this?
@1000hz any news on this? +1 it was happend when add placeholder to element!
Sorry, I found this is IE bug...
I had same issues IE 11, any update on this? it working fine when I remove placeholder.