W IE 11 (nie wiem jak w innych) po uzyskaniu focus na select (ale nie rozwiniętym) i próbie wpisania Weas, kolejne kliknięcia klawiatury powdoują wybieranie opcji które zaczynają się na daną literę.
W Chrome działa to poprawnie.
Problem nie występuje jak lista jest rozwinięta.
Ktoś coś?
Dobra, sam rozwiązałem swój problem

Wystarczyło:
Kod
.on('keyup.customSelect', function (e) {
if(!customSelectSpan.hasClass(getClass('Open'))){
$select.trigger('blur.customSelect');
$select.trigger('focus.customSelect');
}else{
if(e.which==13||e.which==27){
changed($select,customSelectSpan);
}
}
})
if(!customSelectSpan.hasClass(getClass('Open'))){
$select.trigger('blur.customSelect');
$select.trigger('focus.customSelect');
}else{
if(e.which==13||e.which==27){
changed($select,customSelectSpan);
}
}
})
zamienić:
Kod
.on('keyup.customSelect', function (e) {
if(customSelectSpan.hasClass(getClass('Open'))){
if(e.which==13||e.which==27){
changed($select,customSelectSpan);
}
}
})
if(customSelectSpan.hasClass(getClass('Open'))){
if(e.which==13||e.which==27){
changed($select,customSelectSpan);
}
}
})
Te triggery psuły wszystko
