select

Better select widgets in vanilla javascript.  https://p.ce9e.org/select/demo/
git clone https://git.ce9e.org/select.git

commit
03b46bea64755d3613ea4fa53e9f08f51ccfdbd3
parent
c5916e0ef5618d161528582572a2f903106167b8
Author
Tobias Bengfort <tobias.bengfort@posteo.de>
Date
2022-07-26 15:24
align aria-live

Diffstat

M select.js 2 +-

1 files changed, 1 insertions, 1 deletions


diff --git a/select.js b/select.js

@@ -44,7 +44,7 @@ export class Select {
   44    44 
   45    45 		if (this.original.multiple) {
   46    46 			var inputWrapper = create('<div class="select__input">');
   47    -1 			this.values = create('<ul class="select__values">')
   -1    47 			this.values = create('<ul class="select__values" aria-live="polite">')
   48    48 			inputWrapper.append(this.values);
   49    49 			inputWrapper.append(this.input);
   50    50 			this.wrapper.append(inputWrapper);