Components
      
      
      
        
        Select
        
      
      
      
        
  
  
  
  
  
    
      <div class="govuk-form-group">
  <label class="govuk-label" for="sort">
    Sort by
  </label>
  <select class="govuk-select" id="sort" name="sort">
    <option value="published">Recently published</option>
    <option value="updated" selected>Recently updated</option>
    <option value="views">Most views</option>
    <option value="comments">Most comments</option>
  </select>
</div>
     
   
  
  
      
  
    
      Nunjucks macro options
    
  
  
        
        Use options to customise the appearance, content and behaviour of a component when using a macro, for example, changing the text.
        
        
        Some options are required for the macro to work; these are marked as "Required" in the option description.
        
        
        If you're using Nunjucks macros in production with "html" options, or ones ending with "html", you must sanitise the HTML to protect against  cross-site scripting exploits.
        
          
            Primary options
            
              
                
                
                
              
            
            
                
                  
                  | string | Required.
                    Id for each select box. | 
                
                  
                  | string | Required.
                    Name property for the select. | 
                
                  
                  | array | Required.
                    Array of option items for the select.
                      See items. | 
                
                  
                  | string | One or more element IDs to add to the aria-describedbyattribute, used to provide additional descriptive information for screenreader users. | 
                
                  
                  | object | Label text or HTML by specifying value for either text or html keys.
                        See label. | 
                
                  
                  | object | Options for the hint component.
                        See hint. | 
                
                  
                  | object | Options for the error message component. The error message component will not display if you use a falsy value for errorMessage, for examplefalseornull.
                        See errorMessage. | 
                
                  
                  | object | Options for the form-group wrapper
                      See formGroup. | 
                
                  
                  | string | Classes to add to the select. | 
                
                  
                  | object | HTML attributes (for example data attributes) to add to the select. | 
            
          
          
            Options for items
            
              
                
                
                
              
            
            
                
                  
                  | string | Value for the option item. Defaults to an empty string. | 
                
                  
                  | string | Required.
                    Text for the option item. | 
                
                  
                  | boolean | Sets the option as the selected. | 
                
                  
                  | boolean | Sets the option item as disabled. | 
                
                  
                  | object | HTML attributes (for example data attributes) to add to the option. | 
            
          
          
          
            Options for label
            
              
                
                
                
              
            
            
                
                  
                  | string | Required.
                    If htmlis set, this is not required. Text to use within the label. Ifhtmlis provided, thetextargument will be ignored. | 
                
                  
                  | string | Required.
                    If textis set, this is not required. HTML to use within the label. Ifhtmlis provided, thetextargument will be ignored. | 
                
                  
                  | string | The value of the for attribute, the id of the input the label is associated with. | 
                
                  
                  | boolean | Whether the label also acts as the heading for the page. | 
                
                  
                  | string | Classes to add to the label tag. | 
                
                  
                  | object | HTML attributes (for example data attributes) to add to the label tag. | 
            
          
          
            Options for hint
            
              
                
                
                
              
            
            
                
                  
                  | string | Required.
                    If htmlis set, this is not required. Text to use within the hint. Ifhtmlis provided, thetextargument will be ignored. | 
                
                  
                  | string | Required.
                    If textis set, this is not required. HTML to use within the hint. Ifhtmlis provided, thetextargument will be ignored. | 
                
                  
                  | string | Optional id attribute to add to the hint span tag. | 
                
                  
                  | string | Classes to add to the hint span tag. | 
                
                  
                  | object | HTML attributes (for example data attributes) to add to the hint span tag. | 
            
          
   
 
    
      {% from "govuk/components/select/macro.njk" import govukSelect %}
{{ govukSelect({
  id: "sort",
  name: "sort",
  label: {
    text: "Sort by"
  },
  items: [
    {
      value: "published",
      text: "Recently published"
    },
    {
      value: "updated",
      text: "Recently updated",
      selected: true
    },
    {
      value: "views",
      text: "Most views"
    },
    {
      value: "comments",
      text: "Most comments"
    }
  ]
}) }}
     
   
 
When to use this component
The select component should only be used as a last resort in public-facing services because research shows that some users find selects very difficult to use.
How it works
The select component allows users to choose an option from a long list. Before using the select component, try asking users questions which will allow you to present them with fewer options.
Asking questions means you’re less likely to need to use the select component, and can consider using a different solution, such as radios.
There are 2 ways to use the select component. You can use HTML or, if you’re using Nunjucks or the GOV.UK Prototype Kit,  you can use the Nunjucks macro.
  
  
  
  
  
    
      <div class="govuk-form-group">
  <label class="govuk-label" for="sort">
    Sort by
  </label>
  <select class="govuk-select" id="sort" name="sort">
    <option value="published">Recently published</option>
    <option value="updated" selected>Recently updated</option>
    <option value="views">Most views</option>
    <option value="comments">Most comments</option>
  </select>
</div>
     
   
  
  
      
  
    
      Nunjucks macro options
    
  
  
        
        Use options to customise the appearance, content and behaviour of a component when using a macro, for example, changing the text.
        
        
        Some options are required for the macro to work; these are marked as "Required" in the option description.
        
        
        If you're using Nunjucks macros in production with "html" options, or ones ending with "html", you must sanitise the HTML to protect against  cross-site scripting exploits.
        
          
            Primary options
            
              
                
                
                
              
            
            
                
                  
                  | string | Required.
                    Id for each select box. | 
                
                  
                  | string | Required.
                    Name property for the select. | 
                
                  
                  | array | Required.
                    Array of option items for the select.
                      See items. | 
                
                  
                  | string | One or more element IDs to add to the aria-describedbyattribute, used to provide additional descriptive information for screenreader users. | 
                
                  
                  | object | Label text or HTML by specifying value for either text or html keys.
                        See label. | 
                
                  
                  | object | Options for the hint component.
                        See hint. | 
                
                  
                  | object | Options for the error message component. The error message component will not display if you use a falsy value for errorMessage, for examplefalseornull.
                        See errorMessage. | 
                
                  
                  | object | Options for the form-group wrapper
                      See formGroup. | 
                
                  
                  | string | Classes to add to the select. | 
                
                  
                  | object | HTML attributes (for example data attributes) to add to the select. | 
            
          
          
            Options for items
            
              
                
                
                
              
            
            
                
                  
                  | string | Value for the option item. Defaults to an empty string. | 
                
                  
                  | string | Required.
                    Text for the option item. | 
                
                  
                  | boolean | Sets the option as the selected. | 
                
                  
                  | boolean | Sets the option item as disabled. | 
                
                  
                  | object | HTML attributes (for example data attributes) to add to the option. | 
            
          
          
          
            Options for label
            
              
                
                
                
              
            
            
                
                  
                  | string | Required.
                    If htmlis set, this is not required. Text to use within the label. Ifhtmlis provided, thetextargument will be ignored. | 
                
                  
                  | string | Required.
                    If textis set, this is not required. HTML to use within the label. Ifhtmlis provided, thetextargument will be ignored. | 
                
                  
                  | string | The value of the for attribute, the id of the input the label is associated with. | 
                
                  
                  | boolean | Whether the label also acts as the heading for the page. | 
                
                  
                  | string | Classes to add to the label tag. | 
                
                  
                  | object | HTML attributes (for example data attributes) to add to the label tag. | 
            
          
          
            Options for hint
            
              
                
                
                
              
            
            
                
                  
                  | string | Required.
                    If htmlis set, this is not required. Text to use within the hint. Ifhtmlis provided, thetextargument will be ignored. | 
                
                  
                  | string | Required.
                    If textis set, this is not required. HTML to use within the hint. Ifhtmlis provided, thetextargument will be ignored. | 
                
                  
                  | string | Optional id attribute to add to the hint span tag. | 
                
                  
                  | string | Classes to add to the hint span tag. | 
                
                  
                  | object | HTML attributes (for example data attributes) to add to the hint span tag. | 
            
          
   
 
    
      {% from "govuk/components/select/macro.njk" import govukSelect %}
{{ govukSelect({
  id: "sort",
  name: "sort",
  label: {
    text: "Sort by"
  },
  items: [
    {
      value: "published",
      text: "Recently published"
    },
    {
      value: "updated",
      text: "Recently updated",
      selected: true
    },
    {
      value: "views",
      text: "Most views"
    },
    {
      value: "comments",
      text: "Most comments"
    }
  ]
}) }}
     
   
 
Research on this component
Watch a video about how some users struggle with selects.
       
      
      
      
        
  Help improve this page
  
    
    To help make sure that this page is useful, relevant and up to date, you can: