Components
Combo box
A combo box helps users select an item from a large list of options.
Passed WCAG 2.1 AA
Testing has revealed some issues with this component. Learn more in the known issues section on this page.
Guidance
When to use the combo box component
- More than 15 options. Use a combo box when there are more than 15 choices in a drop-down list. With so many options, users may find it difficult to navigate with scrolling only.
- Limited space. Use a combo box for presenting options when screen real estate is limited.
When to consider something else
- Limited choices. When the number of options is small, you can continue to use a
select
orradio
element.
Usability guidance
- Use option strings familiar to users. The combo box filters by matching strings. Include option text that includes familiar strings or spellings (for example, if using the combobox with a state list, include the postal abbreviation in the option text: District of Columbia (DC)).
- Make sure to test. Test select menus thoroughly with members of your target audience. Several usability experts suggest they should be the “UI of last resort.” Many users find them confusing and difficult to use.
- Avoid dependent options. Avoid making options in one select menu change based on the input to another. Users often don’t understand how choosing an item in one impacts another
- Use a good default. When most users will (or should) pick a particular option, make it the default:
<option selected="selected">Default</option>
. - Avoid auto-submission. Don’t use JavaScript to automatically submit the form (or do anything else) when an option is selected. Offer a “submit” button at the end of the form instead. Users often change their choices multiple times. Auto-submission is also less accessible.
Accessibility guidance
- Known assistive technology issues. Testing with people using assistive technology revealed usability concerns that require additional investigation. At this time, consider using a Select component instead of a Combo box. More research and testing is planned to better understand and address these accessibility issues. If you would like to contribute to improving this component, please join our community and share your feedback.
- Customize form controls accessibly. If you customize this component, ensure that it continues to meet the accessibility requirements that apply to all form controls.
- Always use a label. Make sure your select element has a label. Don’t replace it with the default menu option (for example, removing the “State” label and just having the menu read “Select a state” by default).
- Avoid auto-submission. Don’t use JavaScript to automatically submit the form (or do anything else) when an option is selected. Auto-submission disrupts screen readers because they select each option as they read them.
Using the combo box component
-
Properties. The following properties modify component functionality. These properties can be set or adjusted at any time before or after initialization in order to have an effect.
Property Element Description data-filter
.usa-combo-box
The combo box will use this regular expression to filter the combo box options. You are declaring a case insensitive match over the entire option text, which means
^
and$
are added automatically. You can specify the inputted query with{{query}}
. You can also declare a custom query filter as a data property as well, which can be used in the custom filter (data-number-filter="[0-9]"
and then usingdata-filter="{{numberFilter}}.*"
). The default filter is.*{{query}}.*
, which is a simple “find anywhere within the option” text. -
Initialization properties. The following properties update the component during initialization. These properties must be set before the component is initialized in order to have an effect.
Property Element Description required
select
The combo box component will be required in terms of native form validation.
disabled
select
The combo box component will be disabled / read-only. You can re-enable it by executing the enable procedure on the component.
data-placeholder
.usa-combo-box
To update the placeholder text of the combo box, use the
data-placeholder
attribute. We recommend using a label or hint instead of a placeholder.data-default-value
.usa-combo-box
The combo box will set this value as the default selection if it is found within the select options.
-
Procedures. The following static procedures update the component after initialization. These are in addition to the primary methods referenced in the JS customization documentation.
Procedure Parameters Description enable
.usa-combo-box
The combo box component will be enabled.
disable
.usa-combo-box
The combo box component will be disabled / read-only.
Combo box settings
This component has no settings.
Combo box variants
This component has no variants.
Accessibility test status
The USWDS team did 15 tests based on WCAG 2.1 AA success criteria.
Total tests |
Passed
|
Passed with exceptions
|
Conditional
|
Failed
|
---|---|---|---|---|
15 | 13 | 0 | 2 | 0 |
Overview of recent accessibility test results:
Learn more on the combo box accessibility tests page.
Known issues
All known issues for combo box are tracked in GitHub . Notable usability issues are tracked below:
- Users were confused by the component’s search results. When users typed a single letter into the component, they expected to receive a list of items that began with that letter. Instead, they received a list of items that contained that letter anywhere in the word. More information on GitHub: uswds#5647
Help fix these issues or add details on GitHub. Don't have an account? Please join our community to share feedback and contribute to USWDS.
Package
-
Package usage:
@forward "usa-combo-box";
- Dependencies:
usa-select
,usa-icon
Latest updates
Meaningful code and guidance updates are listed in the following table:
Date | USWDS version | Affects | Description |
---|---|---|---|
2024-10-04 | 3.9.0 |
|
Removed custom screen reader instructions. Combo box now relies on the default instructions provided by screen readers. More information: uswds#6022 |
2024-09-18 | N/A |
|
Added WCAG compliance tag and accessibility test status section. More information: uswds-site#2811 |
2024-03-13 | N/A |
|
Added known issues section. More information: uswds-site#2402 |
2023-06-09 | 3.5.0 |
|
Improved consistency and visibility of disabled styles.
Form elements with the |
2023-06-09 | 3.5.0 |
|
Improved consistency of disabled styles in forced colors mode. More information: uswds#5295 |
2023-06-09 | 3.5.0 |
|
Improved consistency of keyboard actions.
Users can now to use |
2022-11-14 | N/A |
|
Added note on usability issues with assistive technology. Testing with people using assistive technology revealed usability concerns that require additional investigation. Until addressed, consider using a Select component instead of a Combo box. More information: uswds-site#1898 |
2022-04-28 | N/A |
|
Updated package name to |
2022-04-28 | 3.0.0 |
|
Breaking Updated to Sass module syntax and new package structure. More information: uswds#4656 |
2022-04-13 | N/A |
|
Updated package name to |
2022-04-11 | 2.13.3 |
|
Added support for forced colors mode. All our components now support proper display when users have a forced colors mode set in their operating system. More information: uswds#4610 |
2022-03-07 | 2.13.2 |
|
Added proper |
2021-11-01 | 2.12.2 |
|
Added automatic sanitizing. The design system now automatically sanitizes content in elements we compose with JavaScript. This means that components like combo box, tooltip, file input, and date picker will sanitize any content passed to them. This helps protect any design system implementation against malicious XSS attacks through these components. More information: uswds#4329 |
2021-08-18 | 2.12.1 |
|
Improved performance of date picker and combo box JavaScript. More information: uswds#4256 |
2021-08-18 | 2.12.1 |
|
Improved how combo box parses and displays |