Hey. I am returning a JSON-encoded array ("html") from my Ajax call, which I would like to add both value and text to selectize (I use a tag). How can i do this?
HTML
<input type="text" value="test" class="demo-default selectized" id="input-tags" tabindex="-1" style="display: block;">
JQuery
try { data = $.parseJSON(html); var obj = jQuery.parseJSON(html); outcome = (obj.outcome); $('#input-tags').selectize({ delimiter: ',', persist: false, maxItems: 1, create: function (input) { return { value: input, text: input } } });
}
Athanatos
source share