All Projects → lodev09 → bootstrap-dropselect

lodev09 / bootstrap-dropselect

Licence: Apache-2.0 License
A simple jQuery plugin that extends bootstrap's dropdown menu into something like github's select menu.

Projects that are alternatives of or similar to bootstrap-dropselect

Pretty Dropdowns
A simple, lightweight jQuery plugin to create stylized drop-down menus.
Stars: ✭ 96 (+24.68%)
Mutual labels:  jquery-plugin, dropdown
Jquery Selectric
jQuery plugin for easy manipulation and customization of HTML selects
Stars: ✭ 724 (+840.26%)
Mutual labels:  jquery-plugin, dropdown
hierarchy-select
Hierarchy Select jQuery Plugin for Twitter Bootstrap
Stars: ✭ 40 (-48.05%)
Mutual labels:  jquery-plugin, dropdown
Dropdown
a lightweight dropdown of jQuery plugins
Stars: ✭ 105 (+36.36%)
Mutual labels:  jquery-plugin, dropdown
ScriptableObjectMultiSelectDropdown
Multi Select Dropdown for ScriptableObjects
Stars: ✭ 18 (-76.62%)
Mutual labels:  dropdown
frontal
An Angular select/dropdown component
Stars: ✭ 20 (-74.03%)
Mutual labels:  dropdown
intl-tel-input-rails
intl-tel-input for the Rails asset pipeline
Stars: ✭ 35 (-54.55%)
Mutual labels:  jquery-plugin
jquery-regexp-classes
$(elem).removeClass(regExp) and $(elem).hasClass(regExp)
Stars: ✭ 18 (-76.62%)
Mutual labels:  jquery-plugin
tabullet
Simple jQuery plugins for creating a table that can insert, edit, and delete row in one place.
Stars: ✭ 13 (-83.12%)
Mutual labels:  jquery-plugin
jsontree
jQuery plugin for JSON visualization
Stars: ✭ 14 (-81.82%)
Mutual labels:  jquery-plugin
decoy
jQuery plugin to make decoys for your elements.
Stars: ✭ 53 (-31.17%)
Mutual labels:  jquery-plugin
Basic-Version
The Core of Droptop required to be installed before any other update or upgrade (eg. required to be installed prior to the Supporter Version or an update file) -- This repository contains the current stable public release(s) of Droptop.
Stars: ✭ 59 (-23.38%)
Mutual labels:  dropdown
cascading-dropdown
Cascading form drop-down menus
Stars: ✭ 43 (-44.16%)
Mutual labels:  jquery-plugin
PopupFilterMenu
仿猫眼电影多条件搜索菜单弹框
Stars: ✭ 16 (-79.22%)
Mutual labels:  dropdown
vue-single-select
single select dropdown with autocomplete
Stars: ✭ 43 (-44.16%)
Mutual labels:  dropdown
GaugeMeter
An elegant and dynamic animated graphical gauge meter built with jQuery. GaugeMeter.js is highly customizable and includes full-radial, semi-radial & arch dials.
Stars: ✭ 30 (-61.04%)
Mutual labels:  jquery-plugin
biz-ui
jQuery Plugin Collections for Business
Stars: ✭ 24 (-68.83%)
Mutual labels:  jquery-plugin
jqIpLocation
jqIpLocation – jQuery Plugin that returns the location of an IP address in JSON format
Stars: ✭ 18 (-76.62%)
Mutual labels:  jquery-plugin
ivia
A reactive & model-driven MVVM framework for jQuery with Vue-like interface.
Stars: ✭ 69 (-10.39%)
Mutual labels:  jquery-plugin
busy-load
A flexible loading-mask jQuery-plugin
Stars: ✭ 76 (-1.3%)
Mutual labels:  jquery-plugin

bootstrap-dropselect

A simple jQuery plugin that extends bootstrap's dropdown menu into a select menu

demo

Install

Several quick start options are available:

  • download latest release
  • npm: npm install --save bootstrap-dropselect
  • bower: bower install bootstrap-dropselect

** Make sure to link bootstrap-dropselect.js and bootstrap-dropselect.css to your project

Usage

Setup dropselect in 2 steps

Step 1

Just code your standard bootstrap dropdown. http://getbootstrap.com/components/#dropdowns

<div class="dropdown">
  <button class="btn btn-default dropdown-toggle" type="button" id="dropdownMenu1" data-toggle="dropdown">
    Dropdown
    <span class="caret"></span>
  </button>
  <ul id="dropselect-demo1" class="dropdown-menu" role="menu" aria-labelledby="dropdownMenu1">
    <li role="presentation"><a role="menuitem" tabindex="-1" href="#">Action</a></li>
    <li role="presentation"><a role="menuitem" tabindex="-1" href="#">Another action</a></li>
    <li role="presentation"><a role="menuitem" tabindex="-1" href="#">Something else here</a></li>
    <li role="presentation" class="divider"></li>
    <li role="presentation"><a role="menuitem" tabindex="-1" href="#">Separated link</a></li>
  </ul>
</div>

Step 2

Now get the ul DOM and run dropselect

$(function() {
  $('#dropselect-demo1').dropselect();
})

API

http://lodev09.github.io/bootstrap-dropselect/#api

Credits

All bugs, feature requests, pull requests, feedback, etc., are welcome!

Bootstrap Components, Github's Select Menu

License

Released under the Apache License, Version 2.0. See LICENSE file.

Copyright 2014, Jovanni Lo / @lodev09 / www.lodev09.com / [email protected]

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].