Skip to content

Instantly share code, notes, and snippets.

@joerussbowman
Created January 15, 2011 23:54
Show Gist options
  • Save joerussbowman/781383 to your computer and use it in GitHub Desktop.
Save joerussbowman/781383 to your computer and use it in GitHub Desktop.
Example yui3 autocomplete using yql
<input type="text" name="q" id="q" />
<script type="text/javascript">
YUI().use("autocomplete", "autocomplete-highlighters", "datasource-get", function (Y) {
var acDS = new Y.DataSource.Get({
source: "http://sugg.search.yahoo.com/gossip-us-fp/?nresults=10&queryfirst=2&output=json&version=&command=",
});
Y.one('#q').plug(Y.Plugin.AutoComplete, {
maxResults: 10,
resultHighlighter: 'phraseMatch',
requestTemplate: "{query}",
resultListLocator: 'gossip.results',
resultTextLocator: 'key',
source: acDS
});
});
</script>
@rgrove
Copy link

rgrove commented Jan 16, 2011

DataSource.Get requires a response wrapped in a JSONP callback. The sugg.search API doesn't let you specify a custom JSONP callback, so this can't work. You'll have to go through YQL to get past the same domain restriction.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment