javascript - how to add customize arrow in select sub menu in twitter bootstrap -


please can 1 me, want add , customize select arrow in select dropdown arrow image.

arrow

if you're using silviomoreto's fork of bootstrap dropdown then,

the bootstrap menu arrow can added show-menu-arrow class.

html:

 <select class="selectpicker show-menu-arrow">     <option>mustard</option>     <option>ketchup</option>     <option>relish</option>   </select> 

js:

$('.selectpicker').selectpicker(); 

check jsfiddle example.


Comments

Popular posts from this blog

java - activate/deactivate sonar maven plugin by profile? -

python - TypeError: can only concatenate tuple (not "float") to tuple -

java - What is the difference between String. and String.this. ? -