Samrat
Samrat

Reputation: 103

Bootstrap Multiselect support for bootstrap 5

I am trying to use Bootstrap-multiselect. But, what I am getting on web, all is for bootstrap 4. Is there any version to support bootstrap 5?

Upvotes: 1

Views: 5626

Answers (1)

paolo cava
paolo cava

Reputation: 41

The multiple attribute is also supported

More info enter link description here

<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"/>
<select class="form-select" multiple aria-label="multiple select example">
  <option selected>Open this select menu</option>
  <option value="1">One</option>
  <option value="2">Two</option>
  <option value="3">Three</option>
</select>

Upvotes: 2

Related Questions