We had need of a combobox at work and after looking around at the available options I was not happy with any of them. The project had all it's styling based on Twitter's Bootstrap, so building on that made sense.
I am looking for a new maintainer for this library if anyone is interested. I have changed jobs and no longer use it in any projects. It would be better served by being maintained by someone who uses it regularly. If you are interested let me know by commenting on this issue.
The dependencies are the Bootstrap stylesheet(CSS or LESS). Include it and then the stylesheet(CSS or LESS) and javascript.
Then just activate the plugin on a normal select box(suggest having a blank option first):
<select class="combobox">
<option></option>
<option value="PA">Pennsylvania</option>
<option value="CT">Connecticut</option>
<option value="NY">New York</option>
<option value="MD">Maryland</option>
<option value="VA">Virginia</option>
</select>
<script type="text/javascript">
$(document).ready(function(){
$('.combobox').combobox();
});
</script>
http://dl.dropbox.com/u/21368/bootstrap-combobox/index.html
Licensed under the Apache License, Version 2.0