Search code examples
jqueryautocompletetextboxlist

How to remove entries in jQuery textboxlist via javascript


I'm using jQuery textboxlist, at this moment the devthought.com website is down so I can't access the documentation: is there a way to delete all the entries via javascript? I cant find a method to do this in the source.


Solution

  • Maybe you can try removing it from DOM and create a new one? After removing,

    $('#form_tags_input').textboxlist();
    

    I couldn't see a delete method in website. (it works time by time now.)