selectize.js
selectize.js copied to clipboard
Wrong autocompleate type
in the code I see autocomplete="new-password"
$control_input = $('<input type="select-one" autocomplete="new-password" autofill="no" />').appendTo($control).attr('tabindex', $input.is(':disabled') ? '-1' : self.tabIndex);
that can damage ui in some cases. Better to make autocomplete configurable or disable it by autocomplete="off"