Skip to content Skip to sidebar Skip to footer

Making A Tag Suggestion Using Jquery Chosen Plugin

I am using jquery chosen plugin https://github.com/harvesthq/chosen/ to make my select form fields pretty. Here is the demo page for chosen plugin https://github.com/harvesthq/chos

Solution 1:

All that you have to do is to modify the select box with an ajax request. Than use :

$("#form_field").trigger("list:updated");

to tell "chosen" that the list has been updated.

Solution 2:

Solution 3:

The koenpunt fork of chosen has the functionality you want. More info here

Post a Comment for "Making A Tag Suggestion Using Jquery Chosen Plugin"