Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ibraheem-ghazi/four-boot

javascript library to convert html select into beautiful Bootstrap 4 dropdown
https://github.com/ibraheem-ghazi/four-boot

bootstrap bootstrap4 jquery-plugin

Last synced: 2 days ago
JSON representation

javascript library to convert html select into beautiful Bootstrap 4 dropdown

Awesome Lists containing this project

README

        

**FourBoot Bootstrap Select Picker (Bootstrap 4)**
==========

javascript library to convert html select into beautiful **Bootstrap 4** dropdown

[![](https://data.jsdelivr.com/v1/package/npm/four-boot/badge)](https://www.jsdelivr.com/package/npm/four-boot)

### Changelog
v2.0.0 (2018/08/04)
* fixed issue (deselect-all dont work)[https://github.com/IbraheemAlnabriss/four-boot/issues/1]
* fixed issue (added translation feature)[https://github.com/IbraheemAlnabriss/four-boot/issues/2]
* fixed issue (width size is over)[https://github.com/IbraheemAlnabriss/four-boot/issues/5]
* fixed issue (Error on IE 11)[https://github.com/IbraheemAlnabriss/four-boot/issues/6]

### Documentation
```
https://ibraheem-ghazi.github.io/four-boot/
```

### Dependencies:

* JQuery 1.8+
* Bootstrap 4.0+ (preferred 4.1)

### CDNJS:
The folks at CDNJS host a copy of the library. The CDN is updated after the release is made public, which means there is a delay between the publishing of a release and its availability on the CDN, so keep that in mind. Just use these links:

```
Not Supported Yet :(
```

### JSdeliver:

```

```

### Unpkg:

```

```

### Install with Bower:
```
Not Supported Yet :(
```

### Install with npm:
```
npm install four-boot
```

### Usage:
Create your `````` then apply four-boot using js code.

```html

apple
banana
watermelon
blueberries
apricots
cantaloupe

```
Options can be passed via data attributes or JavaScript.

```
$('select').fourBoot();
//OR
$('select').fourBoot({
class:"btn-danger",
height:"192px",
liveSearch:true
});

```