diff options
author | Scott González <scott.gonzalez@gmail.com> | 2010-01-14 17:23:11 +0000 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2010-01-14 17:23:11 +0000 |
commit | 6024fdf2564b274af2f2d306f420e44a2c88d7b1 (patch) | |
tree | e2bace3eacb81bd9732226fc19dfd5089d19fe3f /demos/autocomplete/default.html | |
parent | 7f5fe2f2f14406a0c028e92ab6203ae0b72a1e96 (diff) | |
download | jquery-ui-6024fdf2564b274af2f2d306f420e44a2c88d7b1.tar.gz jquery-ui-6024fdf2564b274af2f2d306f420e44a2c88d7b1.zip |
Copied autocomplete from dev branch.
Diffstat (limited to 'demos/autocomplete/default.html')
-rw-r--r-- | demos/autocomplete/default.html | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/demos/autocomplete/default.html b/demos/autocomplete/default.html new file mode 100644 index 000000000..996af87a1 --- /dev/null +++ b/demos/autocomplete/default.html @@ -0,0 +1,42 @@ +<!doctype html>
+<html>
+<head>
+ <title>jQuery UI Autocomplete Default Demo</title>
+ <link type="text/css" href="../../themes/base/ui.all.css" rel="stylesheet" />
+ <script type="text/javascript" src="../../jquery-1.3.2.js"></script>
+ <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() {
+ var availableTags = ["c++", "java", "php", "coldfusion", "javascript", "asp", "ruby", "python", "c", "scala", "groovy", "haskell", "perl"];
+ $("#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>
|