I\'m using select2 for multiple value selection. I need to display the drop down list permanently.
Right now when we select or click the input box of select2, the drop d
Try this:
var list = $("#select").select2({
closeOnSelect: false
}).on("select2:closing", function(e) {
e.preventDefault();
}).on("select2:closed", function(e) {
list.select2("open");
});
For Ref Click here
From the select2 documentation, here:
$("#select").select2({
closeOnSelect: false
});