MOON
Server: Apache
System: Linux nserver.cafsindia.com 4.18.0-553.104.1.lve.el8.x86_64 #1 SMP Tue Feb 10 20:07:30 UTC 2026 x86_64
User: cafsindia (1002)
PHP: 8.2.30
Disabled: NONE
Upload Files
File: //home/cafsindia/groups_cafsindia_com/dist/select2/docs/_includes/examples/hide-search.html
<section>

  <h1 id="hide-search">Hiding the search box</h1>

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

  <div class="s2-example">
    <p>
      <select class="js-example-basic-hide-search js-states form-control"></select>
    </p>
  </div>

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