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/index.html | |
parent | 7f5fe2f2f14406a0c028e92ab6203ae0b72a1e96 (diff) | |
download | jquery-ui-6024fdf2564b274af2f2d306f420e44a2c88d7b1.tar.gz jquery-ui-6024fdf2564b274af2f2d306f420e44a2c88d7b1.zip |
Copied autocomplete from dev branch.
Diffstat (limited to 'demos/autocomplete/index.html')
-rw-r--r-- | demos/autocomplete/index.html | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/demos/autocomplete/index.html b/demos/autocomplete/index.html new file mode 100644 index 000000000..d4cc75038 --- /dev/null +++ b/demos/autocomplete/index.html @@ -0,0 +1,20 @@ +<!doctype html>
+<html lang="en">
+<head>
+ <title>jQuery UI Autocomplete Demos</title>
+ <link type="text/css" href="../demos.css" rel="stylesheet" />
+</head>
+<body>
+ <div class="demos-nav">
+ <h4>Examples</h4>
+ <ul>
+ <li class="demo-config-on"><a href="default.html">Default functionality</a></li>
+ <li><a href="remote.html">Remote datasource</a></li>
+ <li><a href="remote-with-cache.html">Remote with caching</a></li>
+ <li><a href="remote-jsonp.html">Remote JSONP datasource</a></li>
+ <li><a href="combobox.html">Combobox</a></li>
+ <li><a href="custom-data.html">Custom data and display</a></li>
+ </ul>
+ </div>
+</body>
+</html>
|