A simple jQuery plugin that extends bootstrap's dropdown menu into something like github's select menu. ## Setup Setup `dropselect` in 2 steps ### Step 1 Just code your standard bootstrap `dropdown`. http://getbootstrap.com/components/#dropdowns ```html ``` ### Step 2 Now get the `ul` DOM and run `dropselect` ```javascript $(function() { $('#dropselect-demo1').dropselect(); }) ``` ## API ### Optio

