I have inserted multiple values into one textbox but the data was not inserted into the table. How to solve this problem?
<input id="txtlocName" placeholder="Location Name" type="text class="form-control">
$('#txtlocName').selectize({
delimiter: ',',`
persist: false,
create: function (input) {
return {
value: input,
text: input
}
}
});