2010-03-12 03:18:34 +00:00
<!DOCTYPE html>
< 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 - Default functionality< / title >
2010-09-10 02:24:52 +00:00
< link rel = "stylesheet" href = "../../themes/base/jquery.ui.all.css" >
2010-11-12 14:19:26 +00:00
< script src = "../../jquery-1.4.4.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 >
< script src = "../../ui/jquery.ui.autocomplete.js" > < / script >
< link rel = "stylesheet" href = "../demos.css" >
< script >
2010-01-20 14:00:14 +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-01-20 14:00:14 +00:00
source: availableTags
});
});
< / script >
< / head >
< body >
< div class = "demo" >
< div class = "ui-widget" >
< label for = "tags" > Tags: < / label >
< input id = "tags" / >
< / div >
< / div > <!-- End demo -->
2010-09-10 02:24:52 +00:00
2010-01-20 14:00:14 +00:00
< div class = "demo-description" >
2010-09-10 02:24:52 +00:00
< p > The Autocomplete widgets provides suggestions while you type into the field. Here the suggestions are tags for programming languages, give "ja" (for Java or JavaScript) a try.< / p >
< p > The datasource is a simple JavaScript array, provided to the widget using the source-option.< / p >
2010-01-20 14:00:14 +00:00
< / div > <!-- End demo - description -->
< / body >
< / html >