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/.trash/dist/select2/docs/_includes/options/dropdown/selections.html
<section>
  <h2>
    Can I change how selecting results works?
  </h2>

  <h3>
    Can I select the highlighted result when the dropdown is closed?
  </h3>

{% highlight js linenos %}
$('select').select2({
  selectOnClose: true
});
{% endhighlight %}

  {% include options/not-written.html %}

  <h3>
    Can I prevent the dropdown from closing when a result is selected?
  </h3>

{% highlight js linenos %}
$('select').select2({
  closeOnSelect: false
});
{% endhighlight %}

  {% include options/not-written.html %}
</section>