how to append typed value in select2 code example
Example 1: how to append typed value in select2
<select class="form-control" multiple>
<option selected="selected">orange</option>
<option>white</option>
<option>purple</option>
</select>
$(".js-example-tags").select2({
tags: true
});
Example 2: how to append typed value in select2
<select class="form-control">
<option selected="selected">orange</option>
<option>white</option>
<option>purple</option>
</select>
$(".js-example-tags").select2({
tags: true
});