2012-09-10 15:33:46 +00:00
<!doctype html>
2010-03-12 03:18:34 +00:00
< html lang = "en" >
2010-01-20 14:00:14 +00:00
< head >
2010-09-10 02:33:09 +00:00
< meta charset = "utf-8" >
< title > jQuery UI Autocomplete - Remote JSONP datasource< / title >
2013-12-02 18:36:12 +00:00
< link rel = "stylesheet" href = "../../themes/base/all.css" >
2010-09-10 02:24:52 +00:00
< link rel = "stylesheet" href = "../demos.css" >
< style >
2011-05-27 12:32:48 +00:00
.ui-autocomplete-loading {
2014-01-24 21:18:30 +00:00
background: white url("images/ui-anim_basic_16x16.gif") right center no-repeat;
2011-05-27 12:32:48 +00:00
}
2010-09-10 02:24:52 +00:00
#city { width: 25em; }
2010-07-19 13:41:21 +00:00
< / style >
2015-06-30 19:22:59 +00:00
< script src = "../../external/requirejs/require.js" > < / script >
< script src = "../bootstrap.js" >
2010-09-10 02:24:52 +00:00
function log( message ) {
2011-05-27 12:32:48 +00:00
$( "< div > " ).text( message ).prependTo( "#log" );
$( "#log" ).scrollTop( 0 );
2010-01-20 14:00:14 +00:00
}
2010-09-10 02:24:52 +00:00
$( "#city" ).autocomplete({
source: function( request, response ) {
2015-04-20 12:20:59 +00:00
$.ajax( {
2014-01-29 14:12:59 +00:00
url: "http://gd.geobytes.com/AutoCompleteCity",
2010-01-20 14:00:14 +00:00
dataType: "jsonp",
data: {
2014-01-29 14:12:59 +00:00
q: request.term
2010-01-20 14:00:14 +00:00
},
2010-09-10 02:24:52 +00:00
success: function( data ) {
2015-04-20 12:20:59 +00:00
// Handle 'no match' indicated by [ "" ] response
response( data.length === 1 & & data[ 0 ].length === 0 ? [] : data );
2010-01-20 14:00:14 +00:00
}
2015-04-20 12:20:59 +00:00
} );
2010-01-20 14:00:14 +00:00
},
2014-04-23 17:56:48 +00:00
minLength: 3,
2010-09-10 02:24:52 +00:00
select: function( event, ui ) {
2015-04-20 12:20:59 +00:00
log( "Selected: " + ui.item.label );
2010-01-20 14:00:14 +00:00
}
2015-04-20 12:20:59 +00:00
} );
2010-01-20 14:00:14 +00:00
< / script >
< / head >
< body >
< div class = "ui-widget" >
< label for = "city" > Your city: < / label >
2015-04-20 12:20:59 +00:00
< input id = "city" type = "text" >
Powered by < a href = "http://geobytes.com" > geobytes.com< / a >
2010-01-20 14:00:14 +00:00
< / div >
< div class = "ui-widget" style = "margin-top:2em; font-family:Arial" >
Result:
< div id = "log" style = "height: 200px; width: 300px; overflow: auto;" class = "ui-widget-content" > < / div >
< / div >
< div class = "demo-description" >
2015-04-20 12:20:59 +00:00
< p > The Autocomplete widgets provides suggestions while you type into the field. Here the suggestions are cities, displayed when at least three characters are entered into the field. The datasource is the < a href = "http://geobytes.com" > geobytes.com webservice< / a > . That data is also available in callbacks, as illustrated by the Result area below the input.< / p >
2012-09-10 15:33:46 +00:00
< / div >
2010-01-20 14:00:14 +00:00
< / body >
< / html >