Could someone please tell me why my code for the jquery autocomplete is not working?
Here is my javascript code.
Warning: This is an old answer to an old question dating back to 2011. You should be advised to use a more recent release of jQuery and check the API reference for guidance.
The problem you're having is that you are using the jQuery Autocomplete plugin but you're calling it the way you would call the jQuery UI autocomplete.
If you'd use the jQuery UI Autocomplete, the code itself works fine as you can see in this fiddle. If you use the the autocomplete plugin, you've to change the call to
$("#seed_one").autocomplete(data);
Suggestions:
Complete code for jQuery UI
Complete code for Autocomplete plugin: