multiple.html 541 B

1234567891011121314151617
  1. <section>
  2. <h2 id="multiple">
  3. Can I allow users to make multiple selections?
  4. </h2>
  5. <p>
  6. Yes, Select2 supports making multiple selections through the use of the <code>multiple</code> option that can be passed in when initializing Select2.
  7. </p>
  8. <h3>
  9. Can the <code>multiple</code> attribute be used on my <code>&lt;select&gt;</code> element?
  10. </h3>
  11. <p>
  12. Yes, Select2 will automatically map the value of the <code>multiple</code> attribute to the <code>multiple</code> option during initialization.
  13. </p>
  14. </section>