select2 code example
Example 1: .select2-selection__arrow { height: 34px !important; }
.select2-selection__rendered {
line-height: 31px !important;
}
.select2-container .select2-selection--single {
height: 35px !important;
}
.select2-selection__arrow {
height: 34px !important;
}
Example 2: select2
$('.js-example-basic-single').select2({
placeholder: 'Select an option'
});
Example 3: select2 restric 5 selection
$("#tags").select2({
maximumSelectionLength: 3
});
Example 4: select 2 dropdown
$('#element').select2({
placeholder: 'Select a option',
minimumInputLength: 3,
ajax: {
url: route('api.fetch-options'),
dataType: 'json',
type: 'GET',
quietMillis: 50,
data: function (params) {
return {
visitor_name: params.term
}
},
processResults({ data }) {
return {
results: $.map(data, function (item) {
return {
text: item.name,
id: item.id,
}
})
}
}
}
}).change(() => {
});
Example 5: select2
$(".js-example-basic-multiple-limit").select2({
maximumSelectionLength: 3
});
Example 6: select2
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/select2.min.css" rel="stylesheet" />
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/select2.min.js"></script>