Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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/chosen

I was thinking if it is possible to make tags like stackoverflow using chosen plugin because some of its feature looks alike. I am also like to know how do i use chosen with ajax to add tag suggestions.

I could use one of those jquery tags out there but i would like to know if i can do it using chosen so i don't need to add another script with my page.

Let me know if you need to know anything more. Thanks in advance.

share|improve this question
Did you ever manage this? – Chris Edwards Sep 13 '12 at 10:38
@ChrisEdwards: no! I will provide the solution here if i work on it further. – Sisir Sep 15 '12 at 17:41
@ChrisEdwards: take a look at my answer below. – Vicky Chijwani Jan 26 at 12:22

2 Answers

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

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

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

share|improve this answer
Thanks! Any help with the tag? – Sisir Dec 21 '11 at 9:48
You need to explain more please – Bouchaala Sabri Dec 21 '11 at 9:56
I need to make a tag sugession like we see in stackoverflow.com when we write a question. In chosen plugin the multiple selection box is works kinda same. I just need to add it on a textbox rather then select box. Hope it make sense. – Sisir Dec 21 '11 at 13:25

Yes, all of what you ask is possible. From my answer to "Is there a way to dynamically ajax add elements through jquery chosen plugin?":

Take a look at the neat Select2 plugin, which is based on Chosen itself and supports remote data sources (aka AJAX data) and infinite scrolling.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.