Just wonder if it is possible to add Icon/Image to Bootstrap Select Options.
I already tries this by adding background-image to options at HERE
<select class="span2">
<option>1</option>
<option style="background-image:url(slider-dot.png);">2</option>
<option>3</option>
</select>
But it is not working! Can you please let me know if this is possible? Thanks
As far as I know you can't add icons to option elements using built-in bootstrap settings. However, there's a plugin built for bootstrap meant to do this functionality, also adding additional customization options to bootstrap select components. It's called bootstrap-select.
The icons used for this plugin are directly loaded from the Glyphicons provided by bootstrap.
EDIT: see link for jsFiddle example: http://jsfiddle.net/YW8MV/5/
The relevant JavaScript is this:
$('.selectpicker').selectpicker({
style: 'btn-primary',
showIcon: true,
title: 'select test'
});