Select2 Playground
Workarea for select2 plugin for jquery.
HTML
<script src="https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.3/js/select2.full.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.3/css/select2.min.css">
<input type="hidden" value="1,1,2">
CSS
.select2-selection__choice{
float: none !important;
display: inline-block !important;
}
JavaScript
var data = [{
id: 1,
text: "AAAAAA"
}, {
id: 2,
text: "BBBBB"
}, {
id: 3,
text: "CCCCC"
}, {
id: 4,
text: "ddddd"
}, {
id: 5,
text: "eeeeeeeeeeeee"
}, {
id: 6,
text: "fffffffffff"
}, {
id: 7,
text: "fffffffffff"
}, {
id: 8,
text: "fffffffffff"
}, {
id: 9,
text: "fffffffffff"
}];
$('input').select2({
width: "100%",
multiple: true,
data: data
});