Hi Guys, I'm using Tags input. However the result is only showing one item. Please check the screenshot. Added the code below. CSS and JS added properly.
<section id="content">
<div class="content-wrap">
<div class="card ">
<div class="card-header"><b>Journal View</b></div>
<div class="card-body">
<div class="bottommargin-sm">
<label for="">Tagging Support</label>
<select class="select-tags form-control select2-hidden-accessible" id="taginp" multiple="" tabindex="-1" aria-hidden="true" style="width:100%;">
</select>
[Test](#)
</div>
</div>
</div>
</div><script>
$(document).ready(function(){
$(".select-tags").select2({
tags: true
});
$(".btnTest").click(function(){
$inp = document.getElementById('taginp');
alert($inp.value);
});
})
</script>
