Hiding the search box

Select2 allows you to hide the search box depending on the number of options which are displayed. In this example, we use the value Infinity to tell Select2 to never display the search box.

{% highlight js linenos %} $(".js-example-basic-hide-search").select2({ minimumResultsForSearch: Infinity }); {% endhighlight %}