I'm using jQuery UI 1.10.3 and jQuery 1.10.2 versions for autocomplete a text box. I'm getting suggestions from remote site which return results when i check dev tools.
There haven't show any js errors or warnings. but it shows a label "No search results." even ajax returnresults. this is my code
var street = $('#txtstreet')
street.autocomplete({
source: function(request, response) {
$.ajax({
url: 'https://myurlhere.com',
data: {
street: request.term
},
dataType: "json",
success: response
});
},
minLength: 2
});
results json
Label shows before textbox
I need to show json label value as a suggetions Anyone know how to fix this issue, Thanks a lot