2010-07-19 18:17:44 +00:00
<!DOCTYPE html>
< html lang = "en" >
< head >
2010-09-10 02:33:09 +00:00
< meta charset = "utf-8" >
< title > jQuery UI Autocomplete - Scrollable results< / title >
2010-09-10 02:24:52 +00:00
< link rel = "stylesheet" href = "../../themes/base/jquery.ui.all.css" >
2011-03-03 01:44:26 +00:00
< script src = "../../jquery-1.5.1.js" > < / script >
2010-09-10 02:24:52 +00:00
< script src = "../../ui/jquery.ui.core.js" > < / script >
< script src = "../../ui/jquery.ui.widget.js" > < / script >
< script src = "../../ui/jquery.ui.position.js" > < / script >
2011-05-11 12:24:16 +00:00
< script src = "../../ui/jquery.ui.menu.js" > < / script >
2010-09-10 02:24:52 +00:00
< script src = "../../ui/jquery.ui.autocomplete.js" > < / script >
< link rel = "stylesheet" href = "../demos.css" >
< style >
2010-07-19 18:17:44 +00:00
.ui-autocomplete {
max-height: 100px;
overflow-y: auto;
2010-11-04 12:36:09 +00:00
/* prevent horizontal scrollbar */
2010-11-02 17:51:29 +00:00
overflow-x: hidden;
2010-11-04 12:36:09 +00:00
/* add padding to account for vertical scrollbar */
padding-right: 20px;
2010-07-19 18:17:44 +00:00
}
/* IE 6 doesn't support max-height
* we use height instead, but this forces the menu to always be this tall
*/
* html .ui-autocomplete {
height: 100px;
}
< / style >
2010-09-10 02:24:52 +00:00
< script >
2010-07-19 18:17:44 +00:00
$(function() {
2010-09-10 02:24:52 +00:00
var availableTags = [
"ActionScript",
"AppleScript",
"Asp",
"BASIC",
"C",
"C++",
"Clojure",
"COBOL",
"ColdFusion",
"Erlang",
"Fortran",
"Groovy",
"Haskell",
"Java",
"JavaScript",
"Lisp",
"Perl",
"PHP",
"Python",
"Ruby",
"Scala",
"Scheme"
];
$( "#tags" ).autocomplete({
2010-07-19 18:17:44 +00:00
source: availableTags
});
});
< / script >
< / head >
< body >
2011-05-27 12:32:48 +00:00
2010-07-19 18:17:44 +00:00
< div class = "demo" >
< div class = "ui-widget" >
< label for = "tags" > Tags: < / label >
2011-05-27 12:32:48 +00:00
< input id = "tags" >
2010-07-19 18:17:44 +00:00
< / div >
< / div > <!-- End demo -->
2010-09-10 02:24:52 +00:00
2010-07-19 18:17:44 +00:00
< div class = "demo-description" >
2010-09-10 02:24:52 +00:00
< p > When displaying a long list of options, you can simply set the max-height for the autocomplete menu to prevent the menu from growing too large. Try typing "a" or "s" above to get a long list of results that you can scroll through.< / p >
2010-07-19 18:17:44 +00:00
< / div > <!-- End demo - description -->
< / body >
< / html >