--- title: Basic usage taxonomy: category: docs process: twig: true never_cache_twig: true --- ## Single select boxes Select2 was designed to be a replacement for the standard ` and turn it into this...
``` ``` Select2 will register itself as a jQuery function if you use any of the distribution builds, so you can call `.select2()` on any jQuery selector where you would like to initialize Select2. ``` $('.js-example-basic-single').select2(); ``` ## Multi-select boxes (pillbox) Select2 also supports multi-value select boxes. The select below is declared with the `multiple` attribute.

``` ```