About
Dropdown select with keyboard navigation (Arrow/Enter/Escape), searchable filtering, multiple selection, option groups, and ARIA combobox semantics.
Basic Single Select
Searchable
Multiple Selection
Option Groups
Disabled & Error States
Keyboard Navigation
Enter/Space/ArrowDown to open, Arrow keys to navigate, Enter to select, Escape to close.
Property-Driven Options
const select = document.querySelector('ars-select');
select.options = [
{ value: 'opt1', label: 'Option 1' },
{ value: 'opt2', label: 'Option 2', group: 'Group A' },
{ value: 'opt3', label: 'Option 3', disabled: true }
];
select.value = 'opt1';
Event Monitor
Listening...