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" >
2015-09-30 13:11:22 +00:00
< meta name = "viewport" content = "width=device-width, initial-scale=1" >
2010-09-10 02:33:09 +00:00
< 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-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
2016-09-01 19:55:25 +00:00
$( "#birds" ).autocomplete({
2010-09-10 02:24:52 +00:00
source: function( request, response ) {
2015-04-20 12:20:59 +00:00
$.ajax( {
2016-09-01 19:55:25 +00:00
url: "search.php",
2010-01-20 14:00:14 +00:00
dataType: "jsonp",
data: {
2016-09-01 19:55:25 +00:00
term: request.term
2010-01-20 14:00:14 +00:00
},
2010-09-10 02:24:52 +00:00
success: function( data ) {
2016-09-01 19:55:25 +00:00
response( 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
},
2016-09-01 19:55:25 +00:00
minLength: 2,
2010-09-10 02:24:52 +00:00
select: function( event, ui ) {
2016-09-01 19:55:25 +00:00
log( "Selected: " + ui.item.value + " aka " + ui.item.id );
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" >
2016-09-01 19:55:25 +00:00
< label for = "birds" > Birds: < / label >
< input id = "birds" >
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" >
2016-09-01 19:55:25 +00:00
< p > The Autocomplete widgets provides suggestions while you type into the field. Here the suggestions are bird names, displayed when at least two characters are entered into the field.< / p >
< p > The datasource is a server-side script which returns JSONP data, specified via a function which uses < code > jQuery.ajax()< / code > for the < code > source< / code > option.< / p >
2012-09-10 15:33:46 +00:00
< / div >
2010-01-20 14:00:14 +00:00
< / body >
< / html >