haubek / bootstrap4c-chosen
Bootstrap 4 Component - Chosen
Installs: 72 538
Dependents: 0
Suggesters: 0
Security: 0
Stars: 84
Watchers: 4
Forks: 42
Open Issues: 16
Language:CSS
Requires
- harvesthq/chosen: ^1.8.3
- twbs/bootstrap: ^4.1.1
- dev-master
- 1.1.1
- 1.1.0
- 1.0.13
- 1.0.12
- 1.0.11
- dev-dependabot/npm_and_yarn/clean-css-4.2.3
- dev-dependabot/npm_and_yarn/gulp-sass-4.1.0
- dev-dependabot/npm_and_yarn/gulp-clean-css-4.3.0
- dev-dependabot/npm_and_yarn/gulp-autoprefixer-7.0.1
- dev-dependabot/npm_and_yarn/mixin-deep-1.3.2
- dev-dependabot/npm_and_yarn/fstream-1.0.12
- dev-dependabot/npm_and_yarn/tar-2.2.2
- dev-dependabot/npm_and_yarn/stringstream-0.0.6
- dev-dependabot/npm_and_yarn/gulp-4.0.2
- dev-dependabot/npm_and_yarn/sshpk-1.16.1
- dev-dependabot/npm_and_yarn/gulp-strip-css-comments-2.0.0
- dev-dependabot/npm_and_yarn/hoek-4.2.1
- dev-dependabot/npm_and_yarn/extend-3.0.2
- dev-dependabot/npm_and_yarn/atob-2.1.2
This package is not auto-updated.
Last update: 2025-03-27 12:41:41 UTC
README
chosen
This is a Fork of alxlit's great stylesheet (https://github.com/alxlit/bootstrap-chosen).
The Bootstrap4C Chosen is a simple Bootstrap 4 styled component for the brilliant Harvest Chosen jQuery plugin (https://github.com/harvesthq/chosen). The component change the default bitmap icons into nice SVG and works better with the Bootstrap 4 variables.
See demo here => https://haubek.github.io
NPM install
npm install bootstrap4c-chosen
CSS
<link href="path/to/component-chosen.min.css" rel="stylesheet">
HTML5 markup
<select id="single" class="form-control form-control-chosen" data-placeholder="Please select...">
<option></option>
<option>Option One</option>
<option>Option Two</option>
<option>Option Three</option>
</select>
<select id="multiple" class="form-control form-control-chosen" data-placeholder="Please select..." multiple>
<option></option>
<option>Option One</option>
<option>Option Two</option>
<option>Option Three</option>
</select>
Javascript
$('.form-control-chosen').chosen();