I’m new to this. I’m trying the Bootstrap-select but I’m not getting the desired effect like here https://developer.snapappointments.com/bootstrap-select/. I ha
$(document).ready(function() {
$('.selectpicker').selectpicker({
style: 'btn-info',
size: 4
});
});
Your script is declared and therefore executed before the -declaration, causing bootstrap-select never being initialized opon
.selectpicker
(selectpicker doesnt exists when the script is runned). So put it in a document(ready)
or after the HTML.