html - Remove bubble count from multiple select menu -
html - Remove bubble count from multiple select menu -
when using selection menu alternative multiple select, jquery mobile displays number alternative chosen - i.e. bubble count.
<select name="locationlist" id="locationlist" multiple="multiple" data-close-btn="none" data-native-menu="false" data-corners="false" class="required"> <option>select location</option> <option value="rajajinagar">rajajinagar</option> <option value="vijayanagar">vijayanagar</option> <option value="hebbal">hebbal</option> <option value="baneswadi">baneswadi</option> <option value="mathikere">mathikere</option> <option value="yeshwanthpur">yeshwanthpur</option> </select>
how remove bubble count select menu multiple select?
there no alternative command count bubble in custom selectmenu, however, can hide using css.
edit: need utilize !important
forcefulness override display
, jqm adds inline style display: inline
.
.ui-select span.ui-li-count { display: none !important; }
demo
html jquery-mobile select
Comments
Post a Comment