
Untitled
By: a guest on
May 5th, 2012 | syntax:
JavaScript | size: 0.40 KB | hits: 18 | expires: Never
$("#by-ingredient").bind("pageshow", function(e) {
$("#searchField").autocomplete({
target: $('#suggestions'),
source: function(request, response) {
$.ajax({
url: "http://www.recipepuppy.com/api/",
dataType:'jsonp',
success: function() {
console.log(response)
}
})
},
//link: 'target.html?q=',
});
});