Simple js library for html5 multiple select
npm install multiple-select-js


![]()


A simple javascript library for multiple select component that supports Bootstrap 4 natively.
You can install multiple-select-js in 3 options:
``bash`
npm i multiple-select-js
And then, simply import it using es6 syntax.
`js`
import MultipleSelect from 'multiple-select-js'
html
`$3
`html
`Basic Usage
For single select.
`html
``js
new MultipleSelect('#select-language', {
placeholder: 'Select Language'
})
`For Multiple select you can simply add
multiple attribute to the select tag.`html
``js
new MultipleSelect('#select-multiple-language', {
placeholder: 'Select Language'
})
``Go to this link for the complete documentation.
The Multiple Select Js library is open-source software licensed under the MIT license.