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 have 2 fields on the form, Fruits and FruitVarieties.

I need to populate an Array based on the Fruit value. This array is then used to AutoComplete Fruit Varieties. The array values are selected from a MySQL DB using Perl. What is the best way to populate this array using jQuery/AJAX?

share|improve this question
google the jQuery Autocomplete logic – diEcho Mar 11 '11 at 9:36

2 Answers

This example of jquery autocomplete with perl may get you started: http://www.jensbits.com/2011/05/09/jquery-ui-autocomplete-widget-with-perl-and-mysql/

share|improve this answer
The link appears to be dead at the moment - what did it say? – Rowland Shaw Oct 23 '11 at 18:52
@RowlandShaw the link is fine. Just loaded it. – jk. Oct 23 '11 at 18:54

You need a script on the server that will output the fruit varieties in JSON format given a fruit. This script will be used by an autocomplete plugin for jQuery (such as jQuery UI autocomplete for instance)

See this SO question for some links and explanations.

share|improve this answer
I have a Perl script on the server that returns an array of hashes from the database. How do I convert it to JSON fromat (the array has an Id, Name) – user649387 Mar 11 '11 at 10:15
Look for the autocomplete plugin and see the format it expects. – MarvinLabs Mar 11 '11 at 10:19

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.