bootstrap-validator
bootstrap-validator copied to clipboard
.has-error:first :input
If first input is select-object focus of form is not possible unless form is at top of page... var $input = this.$element.find(".has-error:first :input"); changing :input to :select helps...but kills generic field-check...
hmm this also helps. is this sufficient? just leave select/input etc. away...
var $input = this.$element.find(".has-error:first");