I'm using bootstrap 4.1 and I want to make one select input searchable with boostrap-select js - https://github.com/silviomoreto/bootstrap-select
For the tests i tried with
<select class="selectpicker">
<option>Mustard</option>
<option>Ketchup</option>
<option>Relish</option>
</select>
and initialize with $('.selectpicker').selectpicker();
I add the library 1.12.4/js/bootstrap-select.min.js after the jquery and boostrap.js libraries
When I click on the select box, It is showing like this -
What could be the problem?