File: multiple.html

package info (click to toggle)
select2.js 4.0.1~dfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 1,416 kB
  • ctags: 143
  • sloc: makefile: 7
file content (17 lines) | stat: -rw-r--r-- 541 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<section>
  <h2 id="multiple">
    Can I allow users to make multiple selections?
  </h2>

  <p>
    Yes, Select2 supports making multiple selections through the use of the <code>multiple</code> option that can be passed in when initializing Select2.
  </p>

  <h3>
    Can the <code>multiple</code> attribute be used on my <code>&lt;select&gt;</code> element?
  </h3>

  <p>
    Yes, Select2 will automatically map the value of the <code>multiple</code> attribute to the <code>multiple</code> option during initialization.
  </p>
</section>