Reputation: 11373
To implement styling on the select tag using the Bootstrap-select library.
I am getting two selects rather than just one dropdown menu.
What do i need to change in my javascript or elsewhere to get it to display correctly
Demo on CodePen
<select class="selectpicker">
<option data-hidden="true">Choose one...</option>
<option>BBQ Pork</option>
<option>Bacon</option>
<option>Sausage</option>
</select>
$(document).ready(function(){
$('.selectpicker').selectpicker();
});
Upvotes: 4
Views: 3860