Как мне выбрать select2 для выбора выпадающего списка?У меня есть код ниже с ошибкой
jQuery.Deferred исключение: не удается прочитать свойство 'length' из неопределенного TypeError: невозможно прочитать свойство 'length' из неопределенного
Code:
$("#select").select2({
minimumInputLength: 1,
tags: [],
placeholder:'Cari',
ajax: {
url: 'http://jsonplaceholder.typicode.com/users',
dataType: 'json',
type: "GET",
quietMillis: 50,
data: function (term) {
return {
term: term
};
},
results: function (data) {
return {
results: $.map(data, function (item) {
return {
text: item.name,
id: item.id
}
})
};
}
} });
Заранее спасибо