bootstrap-validator icon indicating copy to clipboard operation
bootstrap-validator copied to clipboard

IE 10/11 Validate error shows when focus field

Open hjondi opened this issue 10 years ago • 3 comments

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',

hjondi avatar Oct 13 '15 09:10 hjondi

@1000hz any news on this?

dtmckinney avatar Mar 10 '16 17:03 dtmckinney

@1000hz any news on this? +1 it was happend when add placeholder to element!

Sorry, I found this is IE bug...

Bbearhung avatar Oct 04 '16 14:10 Bbearhung

I had same issues IE 11, any update on this? it working fine when I remove placeholder.

sk-karthik avatar Mar 19 '18 06:03 sk-karthik