[Answered ]-Jquery ui autocomplete results doesn't show in html dropdown

2👍

I figured out:

name_json['name'] = name.name

was the culprit. The above was making a key, value list which the autocomplete, somehow couldn’t interpret. I changed to

name_json = name.name

and it worked.

👤KhoPhi

Leave a comment