Performance: Select menus
MEDIUM IMPACT
Select menus impact page load speed and interaction responsiveness, especially when styled or enhanced with JavaScript.
<select class="form-select" aria-label="Choose option"> <!-- fewer options or options loaded on demand --> </select>
<select class="custom-select" style="width: 100%;" onchange="heavyJsFunction()"> <!-- 100+ <option> elements --> </select>
| Pattern | DOM Operations | Reflows | Paint Cost | Verdict |
|---|---|---|---|---|
| Native select with few options | Minimal DOM nodes | 1 reflow on open/close | Low paint cost | [OK] Good |
| Custom select with 100+ options and heavy JS | Many DOM nodes | Multiple reflows on interaction | High paint cost | [X] Bad |