I am trying to use Bootstrap-Select with the search functionality. I can not seem to get it to work, I installed it using npm install bootstrap-select which installs fine @1.12.4 My code for the div and select is:
<div class="form-group">
<select class="selectpicker" id="sel" name="manufacturer" onchange="man()" data-live-search="true">
<option selected>Manufacturer</option>
<option value="cisco">Cisco</option>
<option value="netgear">NetGear</option>
<option value="other">Other</option>
</select>
</div>
Why is it not working? What did I miss type?