We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am using remote data returned in json format, but the autocomplete results are not displayed, even thou the data is returned.
`
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I am using remote data returned in json format, but the autocomplete results are not displayed, even thou the data is returned.
`
<title>Movie Search</title> <script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script> <script src="EasyAutocomplete/jquery.easy-autocomplete.min.js"></script> <script> var options = { url: function(phrase) { return "http://api.themoviedb.org/3/search/movie?api_key=fe4d662718177607da792694a52e7911&query=" + phrase + "&format=json"; }, getValue: "original_title" }; $("#provider-remote").easyAutocomplete(options); </script> `The text was updated successfully, but these errors were encountered: