2010-03-12 03:18:34 +00:00
<!DOCTYPE html>
< html lang = "en" >
2010-01-20 14:00:14 +00:00
< head >
2010-03-12 03:18:34 +00:00
< meta charset = "UTF-8" / >
2010-01-20 14:00:14 +00:00
< title > jQuery UI Autocomplete Default Demo< / title >
2010-02-16 01:38:23 +00:00
< link type = "text/css" href = "../../themes/base/jquery.ui.all.css" rel = "stylesheet" / >
2010-02-16 02:39:57 +00:00
< script type = "text/javascript" src = "../../jquery-1.4.2.js" > < / script >
2010-01-20 14:00:14 +00:00
< script type = "text/javascript" src = "../../ui/jquery.ui.core.js" > < / script >
< script type = "text/javascript" src = "../../ui/jquery.ui.widget.js" > < / script >
< script type = "text/javascript" src = "../../ui/jquery.ui.position.js" > < / script >
< script type = "text/javascript" src = "../../ui/jquery.ui.autocomplete.js" > < / script >
< link type = "text/css" href = "../demos.css" rel = "stylesheet" / >
< script type = "text/javascript" >
$(function() {
2010-07-19 18:10:37 +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"];
2010-01-20 14:00:14 +00:00
$("#tags").autocomplete({
source: availableTags
});
});
< / script >
< / head >
< body >
< div class = "demo" >
< div class = "ui-widget" >
< label for = "tags" > Tags: < / label >
< input id = "tags" / >
< / div >
< / div > <!-- End demo -->
< div class = "demo-description" >
< 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 >
< / div > <!-- End demo - description -->
< / body >
< / html >