Turn your boring native select elements into something beautiful
npm install @akinon/selectify#### Install Using Package Managers
``shBower
bower install --save selectifizejs
#### Import Library
`javascript
import 'selectifyjs';
`#### Initialize Plugin
`html
`Example: select elements having
`multiple` attribute.`html
``javascript
const selectify = $('select[data-selectify]').selectify({
initialize: ($element) => {},
});
`#### Setting up a development environment
You can go ahead and play around with
`src/example/index.html` after running the commands below.`
1. fetch project
git clone git@github.com:cfkarakulak/SelectifyJS.git2. change directory to selectifyjs and install dependencies
npm install3. compile and listen for changes
npm run watch
``