remote-jsonp.htmlを探して、JqueryUIオートロードをダウンロードします。これはajax関数ですが、コンソールを開きます。コンソールにリクエストが表示されません...
dataType;"jsonp"とdataType;"JSON"の違いは何ですか
$( "#city" ).autocomplete({
source: function( request, response ) {
$.ajax({
url: "http://ws.geonames.org/searchJSON",
dataType: "jsonp",
data: {
featureClass: "P",
style: "full",
maxRows: 12,
name_startsWith: request.term
},
success: function( data ) {
response( $.map( data.geonames, function( item ) {
return {
label: item.name + (item.adminName1 ? ", " + item.adminName1 : "") + ", " + item.countryName,
value: item.name
}
}));
}
});
},
リファレンス http://jqueryui.com/demos/autocomplete/remote-jsonp.html