Skip to content

Instantly share code, notes, and snippets.

@mokolabs
Created September 22, 2010 22:06
Show Gist options
  • Save mokolabs/592670 to your computer and use it in GitHub Desktop.
Save mokolabs/592670 to your computer and use it in GitHub Desktop.
var functions = []
$.getJSON("/functions.json", function(data) {
$.each(data, function(i, item) {
functions.push(item.function.name);
});
$("#functions_list").autocomplete(functions);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment