I was using Selectize.js in a select box, What i need is, if an item is not in the list of options i would need to add a new item. When new item is added, i want to have an ajax
You have to invoke the callback, passing your values:
$('#fruits').selectize({ create:function (input, callback){ callback({ value: 123, // probably your ID created or something text: input }); } });