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.
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
Post a Comment